Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web. It has increased in popularity relative to RPC-based architectures such as SOAP due to the intrinsic de-coupling of client from server that comes from having a ...
0
votes
1answer
44 views
How should a client pass a facebook access token to the server?
On every call to my REST API, I require clients to pass user's facebook access token, which authenticates the user. What's best practice for passing this token?
maybe as a parameter behind the HTTP ...
0
votes
0answers
83 views
Web API Authentication using facebook access token
The idea
I'm working on an ASP.NET MVC 2 project, building a REST web API. It will be used as the backend of a mobile app (iOS and Android) and possibly in the future, of a facebook app and a ...
0
votes
1answer
25 views
Calling the Facebook API from CasperJS?
I'm trying to call the facebook API using casperJS, using a url like so:
...
0
votes
0answers
17 views
grant permission to facebook authorization dialog without browser
Is there any API based approach to grant permissions for 'client side login without javascript SDK'.
Here my application logs in the user and when dialog/oauth request is fired I want everything to be ...
0
votes
1answer
22 views
graph API search type “page” seems broken?
I implemented the graph API to search for pages. (&type=page)
The API stopped delivering results about 2 days ago without my code being altered. All I get from REST request like that ...
0
votes
2answers
72 views
Get friends lists from facebook in C# (REST service)
I am creating one rest service. in that i want to get the my all the friends from facebook.
i used below code :
string myAccessToken = "App ID";
FacebookClient client = new ...
1
vote
0answers
19 views
Rest calls to search API's suddenly stopped working, but they work in the graph explorer
Earlier today was successfully getting data making rest calls to the URL below:
https://graph.facebook.com/search?fields=id&q=res&type=event&access_token="my_auth_token"
Now when I try ...
0
votes
1answer
46 views
Facebook FQL Query Results different from Rest Query results sent to API
I'm using this FQL query to return the different branches of a company:
SELECT name, location.street, location.city, location.state,
fan_count, talking_about_count, were_here_count FROM page ...
1
vote
0answers
16 views
Is there any preferred way of login on non-webview clients
I have a smart TV app, that can not use the outh login method. Is it OK to use Legacy REST APIs for login? Is there any other preferred way? How long will the Legacy REST APIs be supported?
0
votes
1answer
115 views
Possible approach to secure a Rest API endpoints using Facebook OAuth
I've been reading a lot about the topic but all I find are obsolete or partial answers, which don't really help me that much and actually just confused me more.
I'm writing a Rest API ...
0
votes
1answer
38 views
Facebook's REST API facebook.auth.getsession() error 100: invalid parameter
I searched google and found allot of posts, but I am still stuck with this.
I am using the REST server as followed:
...
0
votes
0answers
178 views
Commenting a POST via FB API gives “(#200) Permissions error”,“type”:“OAuthException”
I am currently trying to comment a post on the FB feed using the Graph API (through a third party app then). It requires me to http-POST to the $POST_ID/comments resource with the body of the post ...
1
vote
1answer
85 views
Share Status on facebook visible to limited users
I am using following method to share status on facebook.
if (facebook.isSessionValid()) {
Bundle parameters = new Bundle();
parameters.putString("message", msg);
try {
...
0
votes
0answers
43 views
From a REST request to facebook I receive \/ in the url of the photo
In my Android application I'm trying to get photos from a Facebook album using REST.
The response I receive back contains the url of the picture:
"picture": "http://photos-d.ak.fbcdn.net/blablabla"
...
0
votes
0answers
47 views
Retrieve the insights information through graph API/FQL
I am downloading insight metrics that are available through the insight tab of the facebook page(Through the manual excel downloads).
I want to automate this through an API call. Hence, I am using ...
0
votes
0answers
100 views
RESTful Service with various authentication mechanisms (own username/password, Facebook, Google, etc)
What would be the best way to implement a RESTful service that allows multiple authentication mechanisms. E.g., a custom one with a username/password, Facebook, Gooogle and some other OAuth identity ...
0
votes
0answers
88 views
How can you find the OpenGraph url for fb:comments?
We've inherited an app that uses
<fb:comments href="/article/101" width="500" num_posts="20"></fb:comments>
And the comments work similar to this fiddle: ...
0
votes
1answer
32 views
Facebook Connect from public applications
I'm building a RESTful API and I would like to allow users to sign-in or sign-up through Facebook.
My trouble is the following:
if the Facebook Connect is performed client-side, I think I must add ...
0
votes
0answers
48 views
Post to Drupal using facebook account through Rest Server
I have a Drupal 7 with Services 3 module install.
I enabled Rest Server and was able to login and post content using Rest calls.
Now I want to allow Facebook users to login and post content through ...
4
votes
1answer
348 views
RESTful API design: best way to CRUD lightweight connections?
(Pardon the question title; hard to summarize this question.)
On Facebook, you like things. On Twitter, you follow people. On GitHub, you also follow people and star repos and gists.
All of these ...
0
votes
1answer
79 views
Is it possible to use facebook oauth to secure my json API?
I'm developing a mobile app that will interact with a rails app that's essentialy a json api. Is it possible to use an external identity provider such as facebook or googleplus to secure the access to ...
0
votes
0answers
155 views
AirMobile + Facebook API login + PHP RESTful service with MySQL Authentication flow
I am successfully using the FacebookAPI for AirMobile found at:
http://code.google.com/p/facebook-actionscript-api
I have created an application in the Facebook developers area and I am able to use ...
0
votes
0answers
93 views
comment box and comments.add api, how can synchronize them
I am currently working with facebook comments box which is on pageA. but I want to add some post through PageB. so I need an api to communicate with comments box. I found this
> ...
0
votes
0answers
81 views
Getting access_token from facebook
1) When I retrieve an access token from https://developers.facebook.com/tools/explorer, I can see the full contents of a page -
https://graph.facebook.com/(page_id)/feed?=access_token=(my access ...
1
vote
0answers
54 views
Separate OAuth for a mobile app accessing a RESTful service?
I have a mobile app that authenticates a user via a facebook login. This app then communicates with a RESTful php web service. Now, I know that facebook uses an OAuth dialog and a user session is ...
1
vote
1answer
203 views
How to authenticate to Facebook without redirect?
Could suggest a way to authorize my web application in Facebook to get access_token with no need for redirect? I found out that this in fact is possible with deprecated Facebook REST API, but I cannot ...
0
votes
1answer
82 views
Is it still possible to register my FB application to use Facebook REST API that is marked as deprecated?
Is it possible to register my FB application to use Facebook REST API?
Or is it possible to authenticate in facebook mobile app with no redirection?
0
votes
0answers
61 views
using REST API to post a check in onto facebook
I'm trying to use REST services to post a check in for a user, using the POST method,
this is the URL i'm currently using
...
0
votes
0answers
66 views
Why do I suddenly get a “parameter message is required” creating an apprequest in facebook?
I'm using restfb in Java and I've been creating app requests quite happily for some time now. I have always included a parameter called message containing the message I would show to the user when ...
2
votes
1answer
212 views
Restfb - Get multiple connections in one call
I am using restfb to search for connections using search strings. Based on the example on the restfb.com website, searching is just another example of fetching a connection. I have gotten this to work ...
5
votes
2answers
469 views
REST API for website which uses Facebook for authentication
We have a website where the only way to login and authenticate yourself with the site is with Facebook (this was not my choice). The first time you login with Facebook, an account gets automatically ...
1
vote
2answers
118 views
How to make my application run fast with facebook and linkedin?
Please bear with me while I provide a short background:
My application retrieves user data from Facebook and LinkeIn.
Both have very strict terms of use. Specifically, they do not
allow to save ...
0
votes
1answer
287 views
Is it possible to make Facebook API requests from my backend while using the iOS SDK for authentication?
I am working on a web service that has a RESTful backend (written using django) and multiple frontends, one of which is iOS. I would like to have as much as possible done by the backend to minimize ...
0
votes
0answers
87 views
FQL getting only posts by administrators of a group / page
I'm trying to pull posts only from page admins into an application - at the moment I'm using FQL to get the required fields from the 'stream' object.
Looking at the documentation what I need to do ...
0
votes
1answer
75 views
Does the use of place parameter in queries using the Facebook Graph API affect the results of post searches?
I 've been trying to test the place parameter when used for searching post using the Facebook Graph API. However it does not seem to affect results !!
For example:
...
0
votes
0answers
121 views
Retrieve every public status using the Facebook Graph API?
Does facebook provide a query mechanism for retrieving the most recent public statuses without specifying a search term ?
For example could the following Graph API call
...
2
votes
1answer
461 views
Facebook REST API for links.getStats alternative needed
I am building a site where I need the social sharing statistics of a particular URL for example http://www.facebook.com/.
So I came across this REST api by facebook which solves the problem ...
0
votes
2answers
332 views
Facebook authentication for scheduled posts
Lets assume I've got an authorization token from user,
that I will use later in my cron jobs to send posts to user's wall.
How to handle case when token expires and I find it out only in future,
when ...
2
votes
2answers
1k views
REST web service Basic authentication + Client Facebook app authentication = double authentication?
I have built a web service based on a REST design. Of course some of the operations available on resources require authentication (delete a user for example). I use Basic authentication and so far ...
0
votes
0answers
148 views
Basic authentication using facebook token as password
I'm writing an smartphone application.
For the first login, user can choose:
1.To select Facebook for authentication: In that case, I can create a user in my DB with Facebook user info (firstName, ...
0
votes
1answer
211 views
Query Facebook for Name and Picture with ID
I am developing a script where I update the name and profile picture of users every other week or so (to stay updated with their information).
I need to figure out how to use Facebook's API to get ...
2
votes
2answers
433 views
Upload a photo via Graph API using Jersey
I have a Java application and i try to upload a photo to Facebook via graph api with Jersey.
Until now everything works fine with Jersey I can publish messages etc.
I searched hours to find an ...
0
votes
2answers
2k views
Facebook link to share message [closed]
I need some rest api (link) which I can use to write message on fb wall.
It was possible before with http://www.facebook.com/connect/prompt_feed.php?&message=blabla but now it does not work.
...
0
votes
0answers
632 views
REST api using facebook oauth for authorization [closed]
I am developing a REST api which has a thin web client and a mobile app. The application authorizes using facebook oauth. My question is how should I implement authentication for my application? What ...
0
votes
1answer
220 views
Is it possible to get default Facebook Group profile pictures?
According to the officlal Facebook document, it seems that Facebook Graph API can treat Facebook Group profile pictures. However, the picture link provided at Connections section on the document ...
0
votes
0answers
266 views
“An unknown error occurred” when fetching user via Graph API
We are getting "Code 1: An unknown error occurred" messages from our server when trying to fetch the user's UID. We are simply doing a "GET /me" via the RestFB library. We are passing the mobile ...
2
votes
0answers
805 views
Get access token with appid and userid
I have a facebook app. id and a facebook user id, I need to retrieve the access token for such a user. How could I do that?
Cheers.
1
vote
3answers
1k views
Facebook SDK doesn't load…all.js GET failing
I'm using the same code provided in the here
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
console.log('got here');
FB.init({
appId : ...
0
votes
1answer
574 views
Javascript RenRen API
I'm using the renren javascript API. to link a 3RD party app within an iframe to RenRen (the facebook of china). I've been able to authenticate and get an accessToken using
Renren.ui({params});
...
0
votes
2answers
85 views
How can I get started building a Facebook application with a Java server backend?
I want to utilise the Facebook JavaScript API in the client, but manage app logic and configuration on the server through REST web services. I've tried a lot of tutorials out there, but so far I ...
