Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

According to the instruction given here searching public information (as https://graph.facebook.com/search?q=QUERY&type=OBJECT_TYPE) needs to have a valid access token. As I know access token is when a user authorized an apps to access his information; but this is searing the public information. How to get an apps access token to search public information?

In that page, facebook automatically add my access token to the link as

https://graph.facebook.com/search?q=watermelon&type=post&access_token=MY_ACCESS_TOKEN

I created an access token by my apps as https://graph.facebook.com/oauth/access_token?client_id=APP_ID&client_secret=SECRET_ID&grant_type=client_credentials

When I use the generated access token in url https://graph.facebook.com/search?q=watermelon&type=post&access_token=GENERATED_ACCESS_TOKEN, it gives an error

{
   "error": {
      "message": "A user access token is required to request this resource.",
      "type": "OAuthException"
   }
}
  1. How can I generate access token by my apps?
  2. Or do I need to generate access token by own user account? if yes, how?
  3. Since it is searching public profile, facebook should not need authorization on every search, can I generate a permanent access token to perform different searches?
share|improve this question
did you solved this problem? – Mapedd Jan 7 at 18:34
@Mapedd No, it seems the system is not straightforward for simple usage. – All Jan 7 at 20:45

2 Answers

You don't need to pass any token to search in public information (unless you want to search in user's context). Just make a call to the following url and see the URL. Please mark that I have used http instead of https.

http://graph.facebook.com/search?q=watermelon&type=post

But to make my answer more clear - with properly granted access_token I can make a call to the https version of the above url (https version requires an access token) and it just works fine without any problem.

share|improve this answer
5  
But you cannot search public information of users as graph.facebook.com/search?q=mark&type=user – All Oct 18 '11 at 10:00
It does not work with search of type=user. The question is how to generate the access_token programmatically - and I would be very interested in the answer as well. – cji Dec 6 '12 at 0:35

The access token you are requesting looks like an 'application' access token. This token differs from a 'user' or 'page' access token and is used for different things.

https://developers.facebook.com/docs/howtos/login/login-as-app/

This can be used to modify the parameters of your App, create and manage test users, or read your application's insights for example. App access tokens can also be used to publish content to Facebook on behalf of a person who has granted a publishing permission to your application.

Depending on what you are trying to actually do, an application token might be the wrong form of OAuth. Your example (searching for public posts with the term watermelon) doesn't require an OAuth token, so you're obviously trying a different type of graph search. Without saying what you're actually trying to access, it's impossible to actually advise you correctly.

However, I'm going to guess that you're trying to get access to graph objects that require permissions from a specific user. If that's the case, then you need to get permissions from that user first, by requesting the scope of permissions that you require.

This will give you a short term access token for that user, which will allow you to anything within the scope of permissions for which you've requested permission.

This token will only last for a short period after the user has logged into your app. It can also be promoted to a longer term access token

https://developers.facebook.com/docs/howtos/login/extending-tokens/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.