How would I access the keys and values in the following...
[email protected]{"authenticated":"TRUE","devid":"12334567890"}
This will be used for logging in. I am making a http post to a php backend.
I want to check if authenticated == true I also want to be able to use the devid as well.
I know iterating through is an option but i know [email protected] will obviously be changing for every user. So how can I access this dynamic object?
