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.

I've a simple application, that requires facebook signup/login built in Rails 3 that works exactly as I want it to. Meanwhile, I had several requests to make it behave like an API, the web app is a social media tool where people publish content to their own social networks. i'm converting the system to provide a solution for the following problem:

  • 3rd party website having their own login system
  • They want to make a button - publish through X service - and as soon as the user presses the button he will be shown the Facebook Permissions' dialog for my own fb app, as soon as he authorizes it the content will be published

So far, while the webapp was a standalone website, this was really easy to do - they would go to my webapp, login with facebook and published whatever they wanted to, however, I'm finding it hard to come up with a solution that doesn't present any security issues. Here's what I was thinking:

  • I provide a JS SDK which:
    • the 3rd party install in their website -> a special method is associated with a button
    • Once the button is pressed, the user is redirected to FB (sets de redirect_ui to be the current page)
    • catches the params whenever FB redirects back (as soon as the user gives the permissions)
    • Push the content through Facebook and so on
    • the 3rd party provides a callback that will run as soon as the content is published (I send them the FB_ID and access token)
    • The 3rd party can now make calls to all my API given they will send the FB_ID and access token which I sent as soon as I had the permissions

Will this work ? Can I easily catch back the FB redirect ? Are there any security issues ?

Thanks in advance, Ze

share|improve this question

1 Answer

up vote 1 down vote accepted

My system does something quite similar. I provide API to 3rd party sites and make calls to Facebook on behalf of their users.

The approach I took was to implement my system as an oauth provider. This way, when the user logs in on the 3rd party site, he's presented with my login page, which on click or by redirection, redirects him to Facebook oauth flow.

3rd party-->my site--> Facebook

However, this might be a bit of an overkill in your case.

share|improve this answer
Thanks for the hint! Let me see if I got it: so as soon as the user enters the 3rd party he's redirect to your site, which redirects to Facebook, facebook redirects back (with the permissions), you redirect back to the 3rd party, right ? ;) Thanks! – user361526 Oct 31 '12 at 20:00
Even if I pass the 3rd party the access token, will he be able to execute Facebook calls on my behalf ? – user361526 Oct 31 '12 at 20:03
Your understanding is correct. The Facebook calls are done by the 3rd party calling your API and you calling Facebook. – davidrac Nov 1 '12 at 6:15

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.