How to get image url in feedzilla - feed

I'm new to Feedzilla. (http://code.google.com/p/feedzilla-api/wiki/RestApi) I've been able to fetch news feed using their API for json, but I don't see anywhere in the docs where it mentions how to get images. Does anyone know how? Thanks.

Related

Anyone know a way to see who was tagged in a User's Videos on Tiktok?

Relevant link: https://developers.tiktok.com/
I'm currently querying for my own videos using my access token and getting all fields listed as available when hitting the query video endpoint.
I don't see any reference to "tagged" users. I can see who I mentioned by looking at the title text but nothing about tagging.
Anyone know if I am missing something, if it's available from somewhere else or maybe not available at all?
Thanks!

Using Facebook Graph to get URL of Cover Photo

I used to be able to get the URL of the cover photo using me?fields=cover
However, it does not seem to show the URL anymore.
https://developers.facebook.com/docs/graph-api/changelog/version3.0
According to the changelog, the cover field is deprecated and will not work anymore in Apps with Graph API v3.0+.

Getting image and text from facebook post

Is there any possibility to extract/get the image and description from Facebook post in code?
Let say we have a public post
https://www.facebook.com/rihanna/photos/a.207477806675.138795.10092511675/10154095214621676/?type=3&theater
Do we able to extract/get the image and description(Get the new dance remixes ...) of that particular post by using Facebook sdk in code?
thanks in advance
Yes, it's possible. You can access the Graph API through a GET request and the photo ID (in your case it's 10154095214621676). As long as the photo originates from a public page you can call for different parameters like name (that's the description), picture (small image), etc.
You can play around with the Graph API Explorer to figure out what exactly you need. For a more detailed information on the possible parameters you might want to have a look into the Facebook Developers Documentation. There you can also find some examples how to handle requests in different SDKs.
Agreed with trotta.
Something like this https://developers.facebook.com/tools/explorer/145634995501895?method=GET&path=10154095214621676%3Ffields%3Dpicture%2Cname%2Calbum%2Cimages&version=v2.9
and you can get all info for the post.

RSS format for events from facebook page

I was successfully able to get the RSS feed of a page in FB using this URL.
https://facebook.com/feeds/page.php?id=PAGE_ID_HERE&format=rss20
It returns values in RSS format. Then using regular NSXMLParser methods or some so parsing protocols, I was able to parse them.But unfortunately it returns all the details of the page, such as Events, notes and etc.
I would like to get the events only. It is stated here, we can achieve it using Graph API once we obtain the general access token. My question is, can't we simply get the RSS feed for events in facebook page like the URL above? Please advise. Thank you.
It looks like the FB API and all RESTful methods of accessing data from Facebook are being retired in favour of the Graph API and FQL, whichever you prefer.
The Graph API way is to parse the JSON returned by:
https://graph.facebook.com/PAGE_ID/events?access_token=TOKEN_HERE
After skim-reading the FQL docs, I can't find a way to do it using that. So, it looks like your best hope lies with the Graph API.
I would really like to know how to do this. We have a facebook page and have a livestream from this page on our website. Now we would like to have a list of events from the facebook page in the website as well. Is it posible at all?

How can I download a video from Facebook using GraphAPI?

I want to download a video from facebook to the clients local drive. I saw a few browser plugins and Facebook apps that are able to that and I was wondering how it can be done using the GraphAPI or in any other way.
First, you get the Graph API object. If the object is public, it's simple, just get https://graph.facebook.com/10151651550011063. (Where the number is the object's ID, equal to the ?v=OBJECTID in the facebook video URL.)
If the object is not public, you need a valid access_token, and the Graph API url becomes something like https://graph.facebook.com/10151651550011063?access_token=DFSDSGSFDGFGDSblabla
Then, in the Graph API object, you'll find the video download link under source.
Refer Below Link. Might help you
http://developers.facebook.com/docs/reference/api/video/
1/ You can get source video by api but it only in sd quality.
2/ If you need to get source video by api, make sure you know to get accesstoken by this way:
Go to https://m.facebook.com/composer/ocelot/async_loader/?publisher=feed
Search for EAAA... it is your accesstoken.
3/ https://graph.facebook.com/v10.0/(page/group/userid)_videoid?fields=source&access_token=your_accesstoken
example https://graph.facebook.com/v10.0/1389311341281276_2668264723385925?fields=source&access_token=your_accesstoken
finally you can get private video or public video from facebook by graph api
$idPage/feed?fields=message,link,created_time,type,name,id,source
source => will return url mp4 video post
You cannot download videos using api.
You can just get there links,likes,comments etc.