I'm using Query Using HTTP GET on VB.Net to get a response with this code:
Dim webClient As New System.Net.WebClient
Dim result As String = webClient.DownloadString("http://api.site.com/api=xxxxxxxxxxxx&id=1")`
To view the string I use:
MsgBox(result)
The response I get is this:
{"result":"success","message":"Member found","member_data":{"member_id":"1","user_name":"John","first_name":"John","last_name":"Smith","password":"xxx","member_since":"2018-12-08","membership_level":"2","more_membership_levels":null,"account_state":"active","last_accessed":"2018-12-08 09:00:53","last_accessed_from_ip":"1.1.1.1","email":"john.smigh@test.com","phone":null,"address_street":null,"address_city":null,"address_state":null,"address_zipcode":null,"home_page":null,"country":null,"gender":"not specified","referrer":null,"extra_info":null,"reg_code":null,"subscription_starts":"2018-12-08","initial_membership_level":null,"txn_id":"","subscr_id":"","company_name":null,"notes":null,"flags":"0","profile_image":""}}
What I've been trying to figure out is how to get Name, Last Name, email, Membership level, and account state, into separate label.text, any help would be really appreciated!