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.

Because facebook hasn't migrated certain functions over to GRAPH yet, I still need to make some calls via REST. Unfortunately, there doesn't seem to be a way to obtain a REST session key for users who accept my application today.

Is there ANY way to request a REST session key from facebook? I make almost all of my calls via GRAPH, but until they finish migrating features I'm stuck without one....

Thanks in advance!

DW

share|improve this question
What hasn't been migrated? As far as i know everything was moved to Graph API – Igy Feb 20 at 23:39
try to do links.preview, for example. – dwenr Mar 2 at 0:10
I've never heard of that before just now, i suspect it's no longer supported but should still work – Igy Mar 2 at 0:19

1 Answer

up vote 0 down vote accepted

All REST API methods which required a session key should just fine with an access token.

I just tested the links.preview method you mentioned before:

https://api.facebook.com/method/links.preview?url=http://www.google.com&format=json&access_token=<REMOVED>

Response was:

    {
   "href":"http:\/\/www.google.com\/",
   "name":"Google",
   "caption":"www.google.com",
   "description":"Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.",
   "media":[
      {
         "type":"image",
         "src":"http:\/\/www.google.com\/intl\/en_ALL\/images\/srpr\/logo1w.png"
      },
      {
         "type":"image",
         "src":"http:\/\/www.google.com\/images\/google_favicon_128.png"
      }
   ]
}
share|improve this answer
that's very interesting. I had tried something like that in the past without success. I wonder if they've caught up with me after all this time. I'll check it out. Thanks! – dwenr Mar 4 at 15:28
Hey igy -- I try that myself (finally) and I get back "Impersonated access tokens can only be used with the Graph API" from facebook. I'm curious why this works for you and not for me.... – dwenr Mar 22 at 13:47
Are you using a user access token? You need to – Igy Mar 22 at 15:43
it's actually a page access token. I don't always have a user access token on-hand, so I execute calls as a page. I guess that's my problem, huh? Rats. I was so close.... – dwenr Mar 22 at 22:35
Yep, you can only use page tokens with the Graph API, not the old REST API – Igy Mar 22 at 23:30
show 1 more comment

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.