php Programming Glossary: graph.facebook.com
Facebook API without client authentication for public content http://stackoverflow.com/questions/1000773/facebook-api-without-client-authentication-for-public-content
Facebook API - How do I get a facebook user's profile image through the FB api (without requiring the user to Allow app) http://stackoverflow.com/questions/2821061/facebook-api-how-do-i-get-a-facebook-users-profile-image-through-the-fb-api question Simply fetch the data through this url http graph.facebook.com sarfraz.anees picture Replace sarfraz.anees my name with name..
How can I display the users profile pic using the facebook graph api? http://stackoverflow.com/questions/3012905/how-can-i-display-the-users-profile-pic-using-the-facebook-graph-api the user id the url for their profile picture is http graph.facebook.com UID picture where in place of UID you place your uid variable..
How can I tag a user in a photo using the Facebook Graph API? http://stackoverflow.com/questions/3017861/how-can-i-tag-a-user-in-a-photo-using-the-facebook-graph-api args array 'access_token' access_token 'id' uid url https graph.facebook.com idPhoto tags ch curl_init curl_setopt ch CURLOPT_URL url curl_setopt..
Best way to implement Single-Sign-On with all major providers? http://stackoverflow.com/questions/4061537/best-way-to-implement-single-sign-on-with-all-major-providers attributes base64_encode serialize attributes url https graph.facebook.com oauth authorize client_id . this appid. redirect_uri redirecturl.. set so it looks like the user authenticated url https graph.facebook.com oauth access_token client_id 148906418456860 redirect_uri redirecturl.. data token data 'access_token' data this get_data 'https graph.facebook.com me access_token '.urlencode token data json_decode data id data..
Tagging friends in status updates from Facebook API http://stackoverflow.com/questions/4327353/tagging-friends-in-status-updates-from-facebook-api '. message ch curl_init curl_setopt ch CURLOPT_URL 'https graph.facebook.com me feed' curl_setopt ch CURLOPT_HEADER 1 curl_setopt ch CURLOPT_RETURNTRANSFER..
facebook error 'Error validating verification code' http://stackoverflow.com/questions/4386691/facebook-error-error-validating-verification-code to explaine. i success get code but when i access https graph.facebook.com me access_token i get error 'Error validating verification code'...
How to get user's network information using Facebook Graph API? (PHP) http://stackoverflow.com/questions/4522830/how-to-get-users-network-information-using-facebook-graph-api-php the User table contains this information Sample call https graph.facebook.com fql q select affiliations from user where uid 4 access_token..
What's method for checking user fan of a page in GRAPH API? http://stackoverflow.com/questions/4970439/whats-method-for-checking-user-fan-of-a-page-in-graph-api connection to check if a user is a fan of a page https graph.facebook.com me likes PAGE_ID access_token ACCESS_TOKEN This would return..
How to use Facebook graph API to retrieve fan photos uploaded to wall of fan page? http://stackoverflow.com/questions/5083464/how-to-use-facebook-graph-api-to-retrieve-fan-photos-uploaded-to-wall-of-fan-pag able to retrieve photos that an ADMIN posts to our page. graph.facebook.com myalbumid photos Is there a way to use graph api to load publicy.. to retreiving this data is by using the feed option.. ie graph.facebook.com pageid feed EDIT This is about as far as I could get it works..
Facebook API: How to post to own application wall without login http://stackoverflow.com/questions/5205602/facebook-api-how-to-post-to-own-application-wall-without-login Curl this link to get your application access token https graph.facebook.com oauth access_token client_id YOUR_APP_ID client_secret YOUR_APP_SECRET.. appid 'client_secret' appsecret ch curl_init url 'https graph.facebook.com oauth access_token' curl_setopt ch CURLOPT_URL url curl_setopt..
Post to a Facebook user's wall with cURL PHP http://stackoverflow.com/questions/5814158/post-to-a-facebook-users-wall-with-curl-php article' F 'link http www.example.com article.html' https graph.facebook.com facebookid feed php facebook curl facebook graph api share.. action_link ch curl_init curl_setopt ch CURLOPT_URL 'https graph.facebook.com fbnameorid feed' curl_setopt ch CURLOPT_SSL_VERIFYPEER FALSE..
Simple example to post to a Facebook fan page via PHP? http://stackoverflow.com/questions/7818667/simple-example-to-post-to-a-facebook-fan-page-via-php we set our post url to post in our page post_url 'https graph.facebook.com '. page_id.' feed' And the last step we'll use a curl to post..
Facebook: post image and description to wall and in page album via php http://stackoverflow.com/questions/9395356/facebook-post-image-and-description-to-wall-and-in-page-album-via-php example.com #access_token awe12 4. Then navigate to https graph.facebook.com me accounts access_token access_token use the access token from.. api. Here's sample code using curl uri sprintf 'https graph.facebook.com 1 s albums access_token 2 s' page_id access_token post_fields.. access_token 'file1' '@' . image_abs_path uri 'https graph.facebook.com' curl curl_init uri curl_setopt curl CURLOPT_RETURNTRANSFER..
|