I’m creating a web application with php and JavaScript that will get a user’s details from twitter. I have tried reading the documentation at https://dev.twitter.com/docs/api/1/get/users/show but could’t understand anything. I found very little relevant documentation on the subject. I need to see a sample code for a tutorial. Anyone with Ideas?
Share
The way i would handle this is by using:
Then search
$page_datafor the specific details you want, usingpreg_match()to match regex patterns for the data you’re looking for.I also found this, which is along the same lines, but without regex.
http://tareq.wedevs.com/2009/05/playing-with-twitter-json-using-php/