I have so far made a simple Twitter API program that will loop through your Followers and grab all of them. It get's them by their ID's. How do I get their screen_name?
I know I have to do something with users/lookup with user_id as one of the parameters.
I have noticed what I think is my issue.
The JSON code that I am trying to get to goes something like this.
[
{
"screen_name": "twitter"
}
]
I am new with to JSON and have only done it like (below.)
{
"screen_name": "twitter"
}
With the Lookup Function (https://dev.twitter.com/docs/api/1/get/users/lookup) it starts with the "[".
I was thinking I would have to do something like.
$LookUp_JSON->[1]->screen_name which would then print "twitter" but it's obviously not.
Many thanks in advanced.
