parse this string
parse this string
(OP)
I would like parse this string.
I would like to pull out this value
e1fc5ca6-e2e0-3a4d-9e03-73be39e2c4d1
{"access_token":"e1fc5ca6-e2e0-3a4d-9e03-73be39e2c4d1","scope":"am_application_scope default","token_type":"Basic","expires_in":3406}
I would like to pull out this value
e1fc5ca6-e2e0-3a4d-9e03-73be39e2c4d1
{"access_token":"e1fc5ca6-e2e0-3a4d-9e03-73be39e2c4d1","scope":"am_application_scope default","token_type":"Basic","expires_in":3406}
RE: parse this string
When it is a dictionary
my_dictionary = {
"access_token":"e1fc5ca6-e2e0-3a4d-9e03-73be39e2c4d1",
"scope":"am_application_scope default",
"token_type":"Basic",
"expires_in":3406
}
then you will get the value
"e1fc5ca6-e2e0-3a4d-9e03-73be39e2c4d1"
with
my_dictionary["access_token"]
RE: parse this string