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.

im trying to connect to facebook graph to send a notification to user upon friend request

open(URI.encode("https://graph.facebook.com/#{@user.uid}/notifications?access_token=#{ENV['FACEBOOK_KEY']}|#{ENV['FACEBOOK_SECRET']}&template=You have a friend request&href="))

returns OpenURI::HTTPError (400 Bad Request) which is bad. Please do note that all other variables are declared properly.

If i edit the url to open(URI.encode("https://graph.facebook.com/#{@user.uid}/")), it works!!!

i'm suspecting that they encode the | which cost the problem, but if i just do a open("") it returns invalid url.

please help, tqvm

share|improve this question
Can you check what ENV['FACEBOOK_KEY'] and ENV['FACEBOOK_SECRET'] are returning? You don't have to show us, but makesure they are correct – garbage collection Oct 29 '12 at 19:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.