I want to retrieve good quality album photos from graph API. but when i send get request of albums data, they provide me only 130*130 resolution photos. so! how can i get full size photos from graph API?
my graph API URL : https://graph.facebook.com/me?fields=albums{photos{picture,id}}&access_token=my_token
"picture": "https://scontent.xx.fbcdn.net/v/t1.0-0/q82/s130x130"
Related
Facebook Graph API version has changed to 2.4 yesterday. I have been testing using Graph API Explorer and response to /me/photos request has changed. It returns only one photo. Is there a way to get all the photos as it was in v2.3 ?
/me/photos actually only returns tagged photos.
You need to request me/photos?type=uploaded to get all the photos you uploaded.
In tumblr.com, are there any API to collect media data such as photos, videos of an account?
Like Facebook, there are Photo , Album feature which allow user to get photos.
Thanks in advance.
Tumblr is blog-based.
So, you can't post a photo or video like Facebook.
Therefore, you can not retrieve photos, videos via Tumblr developer site http://www.tumblr.com/developers
I think there is only way to do this job is you can get all posts of a blog, then detect whether there type are photo/video. Then, extract photos/videos from posts.
Is it possible to get number of clicks on my Facebook post (Image, video or audio)?
How can I do this using Facebook Graph API?
Use post_engaged_users insights metric to retrieve the number of people who clicked anywhere in your posts.
More information:
Graph API Insights
FQL Insights
I gave an access to fans to upload photos to FANPAGEs wall. How can I count posted photots?
I am too young in FB.apis :-(
Thanks!
I've just read http://developers.facebook.com/docs/reference/api/photo/
An individual photo as represented in the Graph API.
To read the 'photo' object you need
any valid access_token if it is public
user_photos permission to access photos and albums uploaded by the user, and photos in which the user has been tagged
friends_photos permission to access friends' photos and photos in which the user's friends have been tagged
To publish a 'photo' object you need
a valid access token
publish_stream permission
With that granted, you can upload a photo by issuing an HTTP POST request with the photo content and an optional description to one these to Graph API connections:
https://graph.facebook.com/USER_ID/photos - The photo will be published to an album created for your app. We automatically create an album for your app if it does not already exist. All photos uploaded this way will then be added to this same album.
https://graph.facebook.com/ALBUM_ID/photos - The photo will be published to a specific, existing photo album, represented by the ALBUM_ID. Regular albums have a size limit of 200 photos. Default application albums have a size limit of 1000 photos.
PAGE or APP creates OWN XLBUM which can access the same way: https://graph.facebook.com/ALBUM_ID/photos
But there is 1000 photos limitation!
Via the Graph API you can get the Photos connection off of the Page object.
See: http://developers.facebook.com/docs/reference/api/page/
You can play around here: http://developers.facebook.com/tools/explorer
Get /me/accounts
Click one of the page IDs that show up that has some photos.
Add /photos after the page ID and click Get /{pageId}/photos
Is there a way to get a Photo's album ID from Facebook Graph API's news Feed.
This previous SO post:
Facebook Graph API - get a photos album ID
suggested using the FQL table, but my application currently only uses the Graph API and I would like as much as possible for it to remain that way. But it seems even if I do another query about the photo itself I still get no album information.
Thanks a lot,