Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I use the method in the twitter API

$content =  $connection->get('account/verify_credentials');

it returns a json that has all the data of the user

I know that I can access for example the Screen Name like this :

$content->screen_name

but how can I access Country and Country Code ...

share|improve this question
do a var_dump of $content and look at his content, should be there ;) – dbf Sep 20 '12 at 21:00

1 Answer

You can access the users' location with the location field. You will have to guess the country (and its code) from this.

For further documentation, see the corresponding Twitter Developers page : https://dev.twitter.com/docs/platform-objects/users.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.