0
votes
2answers
27 views

Get the 20 most recent photos from an album (JSON)

I'm trying to get the 20 most recent photos from an album using the following JSON feed: (link) My code currently works, the only issue is they aren't the most recent photos from the album: <?php ...
0
votes
0answers
20 views

JSON: Online parser from JSON URL to RSS

Is there an existing website that converts the JSON data from a URL to RSS? I am currently using Facebook Graph API to display the latest wall posts from a Facebook page.
1
vote
1answer
25 views

Facebook looping through returned JSON Open Graph request

Im currently requesting the Open Graph url through JSON like so: https://graph.facebook.com/me/friends?fields=email,likes,name,birthday,location,website&access_token=$token My JSON request is ...
0
votes
0answers
18 views

Json object wont download everytime

I have made a windows desktop app that uses a Twebbrowser1 to log the users into their Facebook account, i have completed the requirements to log in and get permissions from users to allow our app to ...
0
votes
0answers
48 views

JSON doesn't get email when used with facebook connect

I used Facebook connect API to retrieve user basic data from his account on facebook, i'm connecting from java appliation through servlet: private void getUserMailAddressFromJsonResponse(String ...
0
votes
0answers
28 views

Facebook Graph Api: How do I retrieve a large image from a groups feed?

When querying a feed from a groups ID I can retrieve information from fields like picture and full_picture. After parsing the data using json and PHP the output of the full_picture image is too ...
1
vote
1answer
25 views

Returning empty variables in PHP using Facebook Graph

I am trying to retrieve data from a json feed and display using PHP. Only issue is that some elements will return back empty. As I have this in a loop I want to return each post, however not all ...
0
votes
2answers
53 views

How to GET Recent Status Updates on Facebook Page Using Facebook Graph Search API?

Similar to Getting Recent Page feeds? Facebook Graph API / FQL and Getting Facebook Status updates with JSon I would like to do a GET request using Facebook's Graph API, and insert that data into a ...
0
votes
1answer
74 views

Facebook Graph API - JSON data

I am getting the following data in JSON format by the Facebook graph API. However it looks like it is in invalid JSON format. The JSON formatter says that the error is in line 1. What is this error ? ...
0
votes
1answer
58 views

How can I parse JSON output from Facebook php graph api?

I have the this simple code from the example sdk facebook: if ($user) { try { $user_profile = $facebook->api('/me/friends'); } catch (FacebookApiException $e) { error_log($e); $user = null; } } ...
0
votes
1answer
46 views

How do I get the ID value from facebook JSON?

basically, I have input where you type the facebook user ID and and then the script fetches its value to get the link to facebook graph like: var faceuserID = document.getElementById('userID').value; ...
-4
votes
1answer
65 views

Facebook Graph API Explorer “Results Export” out? [closed]

Is there any way to export the results out of Facebook Graph API Explorer please? Or is there any external api to interact directly with it?
0
votes
1answer
24 views

Odd search logic using graph API

Have been using the search API and am observing some perculiar results in search results. I know there is a Chelsea football game on today, so I do a quick search of anything Chelsea related in ...
0
votes
0answers
53 views

Facebook Feed, using an API call to copy all posts on page into own website, how can I format the “string” in message?

Following steps in these posts: http://johndoesdesign.com/blog/2013/php/adding-a-more-advanced-facebook-news-feed-to-a-website/ I was able to retreive my posts made on my Facebook page, it makes an ...
2
votes
1answer
266 views

Facebook Image Gallery on Website (PHP/JSON)

I am trying to get a facebook gallery (https://www.facebook.com/media/set/?set=a.188384271935.125248.188249156935&type=3) in particular to display on a website. All the JSON examples I have tried ...
2
votes
0answers
31 views

Why “<” character got replaced with unicode character in JSON response

What is the reason behind replacement of "<" character with unicode character in FaceBook's Json API response? security?? What kinda attack is possible, If the "<" character presents in the ...
0
votes
1answer
75 views

facebook graph comments filter and summary

I'm trying to retrieve only top-level comments with a count or all comments (including replies) for a given post from the Facebook graph. Has anyone got the Facebook graph comment filter or summary ...
0
votes
1answer
90 views

How to parse the data of JSON response in objective c?

I got a JSON output in this link I extracted the id in this output. (i.e) 419023188150340, 419023228150336, 419023278150331, 419023318150327, 419044998148159, 419045028148156 using the following ...
0
votes
2answers
35 views

Getting No value of location?

Iam getting all the friends information like name,location etc as a graph object in response but when i want to get location from json it givea me no value of location..Please help me and tell me ...
0
votes
0answers
8 views

Looking for documentation for yesterday's changes to the page feed

Yesterday at about 5pm CST the json name / values pairs in the page feed changed significantly. This is reference to the JSON in https://graph.facebook.com/PageName/feed?access_token={access_token} . ...
0
votes
0answers
38 views

iOS Nimbus Photo / CatalogTableViewController connected to webservice

I'm unsure how I would be able to set the Nimbus CatalogTableViewController class's tableContents through a JSON webservice to dynamically control what facebook albums are listed. I have experimented ...
2
votes
1answer
78 views

Facebook API and access tokens

Alright, So I make an Graph API Call and parse the JSON request. Using a link like this I make a HttpGet request: http://graph.facebook.com/me/feed?=access_token="MYACCESSTOKEN" This works fine, but ...
0
votes
1answer
187 views

Facebook like count with jQuery

I'm having a little problem: I'm trying to write a jQuery function that loops over all divs which have a specific class and populates them with Facebook's Like count (the required URL is in the rel ...
0
votes
1answer
94 views

How do I obtain results of FBRequest requestForMyFriends as a JSON formatted file?

I'm using Objective-C and developing for iPhone. I'm sending a request for the friends of a logged in user and writing the data to file to disk like so: [[FBRequest requestForMyFriends] ...
0
votes
2answers
187 views

Facebook Fan Page feed on Website (Age-Protected)

Need help in trying to get posts/wall posts from a fan page that is age-gated on facebook to show up on my site. the fan page is age gated to only let those 17 and over to view it (when they are ...
0
votes
2answers
138 views

Parsing Facebook JSON results in R

I already read other questions but I still don't know how to parse Facebook Graph Search results in R. My main goal is to convert in something like a data frame, to analyze some columns. ...
0
votes
1answer
57 views

how to parse json data from facebook posts in php?

I'm trying to get links of posts of a page on facebook. I am using this code but it doesn't return anything $jsonobject = ...
0
votes
1answer
90 views

how to convert facebook response to a string in json format?

I'm trying to get query response from Facebook and map it to user defined class: I have following class: class FBStory { @Field private String application_id; @Field ...
0
votes
0answers
141 views

Facebook Graph Api . JSONObject cannot be converted to JSONArray

I'm trying to get data from Facebook Graph Api. I want to do a high score table , from user friend score. I have 2 question: why I got this error? why the ruturn value doesnt include my friends ...
0
votes
2answers
130 views

Facebook profile image and download it to my web directory

Take a Facebook profile image and download it to my directory "www.site.com/images".. <?php $url = "https://graph.facebook.com/$id/picture?width=350&height=500&redirect=false"; ?> The ...
0
votes
1answer
138 views

How get photo from album in facebook graph API

This is my situation: In my android project i using facebook graph api for retrive news feed. When i retrive json graph object i see many type of object 'video','swf','status','photo'. In photo ...
0
votes
0answers
70 views

Getting Values from Facebook Registration JSON Object

I'm having issues using the Facebook Registration for a contest form I'm building, the form submits and gives me the following JSON array when using print_r: Array ( [algorithm] => HMAC-SHA256 ...
1
vote
0answers
199 views

Facebook Graph Search return proper JSON

I've been using mechanize lately to crawl around the web and do stuff. I decided that I wanted to write some algorithms to graphically show connections between my friends. Each friend will be a node ...
0
votes
1answer
380 views

Fatal error: Uncaught OAuthException: Invalid OAuth access token signature

I have downloaded the php sdk for facebook, and am trying to retrieve a public pages statuses. In my page I have the following: require_once("facebook.php"); $config = array(); $config[‘appId’] = ...
-1
votes
2answers
223 views

Facebook api: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request with [closed]

I have been looking on stack and the facebook documentation on how to do a facebook api call to get a pages status messages. So Far I have this: $url = ...
0
votes
0answers
283 views

WinJS.xhr retrieving Facebook JSON not working

I've been playing around Windows 8 VS 2012 development, but I'm stuck and can't figure out where my error is. When working with the Twitter API, as below, everything works as expected: ...
-2
votes
2answers
90 views

How can I extract data from this JSON object with PERL?

I'm really struggling to understand how to navigate a JSON object. I'm using JSON.pm, and I am beating my head on my desk attempting to access each "name" parameter and store the first index of it's ...
0
votes
1answer
54 views

How to read Facebook JSON results in PHP

Sorry - this will be a bit poorly worded. My code fbid is from a form. I what to know how to get and display parts on whats been requested by file_get_contents(). <?php echo $_POST["fbid"]; ...
0
votes
0answers
159 views

Facebook JSON object in file_get_contents(“php://input”) doesn't return value

I'm trying to print out the or access the JSON objects returned by the POST request from Facebook. Here's the code: <?php define('VERIFY_TOKEN', 'mysecretverifytokenstring'); ...
0
votes
0answers
59 views

facebook graph api returning badly formatted json

I have started using the facebook graph api keyword search and all was working fine until I started noticing JSONExceptions occurring in my code. I traced it to the actual feed from the api and ...
0
votes
1answer
41 views

getting output of facebook graph api calls in sorted manner?

Is there a way by which i can sort the json received from facebook graph api calls on the basis of value of some particular field?
1
vote
0answers
170 views

facebook Request.executeGraphPathRequestAsync (json is not in the correct format)

I working on my android project,using facebook API 3.0, i want get latest news,but after i get response i see that json is not in the correct format... I have error "This is not a JSON Array" when i ...
-1
votes
1answer
198 views

Parsing Facebook FQL Multiquery in Java

I'm having some trouble with parsing an FQL multiquery for Facebook. I don't know how I need to handle the JSONArray with the same name in the result -> fql_result_set. Here is the FQL JSON I got. { ...
0
votes
2answers
57 views

Stripping down FQL JSON

I'm using FQL to run this query "SELECT post_id, actor_id, description, created_time, message, type, attachment FROM stream WHERE source_id = $page_id AND type > 0 LIMIT 0,9" Which returns 10 ...
0
votes
1answer
135 views

Facebook Graph API inbox messages with no comments array

Some inbox messages in the Graph API have no comments array. Comments are the actual messages in the thread. Are these messages simply not available to API users? Example: { "unread": 0, ...
1
vote
0answers
31 views

User + friend tagged photos

Is it possible to get all then photos of the user + the selected friend using Facebook Graph API. Ive tired using /me/?fields=id,name,tagged.with(friendID).fields(picture) but it greyed out and did ...
0
votes
1answer
50 views

Showing a facebook page feed on IOS app

I want to show a facebook feed of a page into my IOS app. Now I looked at a PHP example and that is doing the following. $profile_id = "111111111111111231"; //App Info, needed for Auth $app_id = ...
1
vote
0answers
59 views

comment from facebook api with the graph api with objective - c

I am trying to get comments of a facebook post with the graph api. Now I have the following method. +(NSArray *)getCommentsWithParam:(NSString *)Param { NSString *request = [NSString ...
0
votes
0answers
14 views

Is the Facebook page tagged connection not accurate?

The connection named "tagged" in the Facebook Page API documented here states that the field tagged includes "The photos, videos, and posts in which the Page has been tagged" however this does not ...
0
votes
1answer
114 views

Facebook server returns null data on query. Querying the same on Graph API Explorer gives me correct JSON Data

I'm trying to fetch the photos from particular album on facebook. Trying below URL gives me perfect data when querying at Graph API Explorer. But it returns null in my application code. Also when i ...

1 2 3 4 5