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