I am trying to add an app request from a user using Koala/Omniauth
@graph = Koala::Facebook::API.new(current_user.omnitoken)
@graph.put_object("me", "apprequests", {:appid => MY_APP_ID, :to => USER_ID, :message => "Come join me!"} )
I dont get any errors, but the request does not reach the user. Is the code correct/am i missing something?
Edit: The users I am inviting have not (yet) accepted the app, however the user that IS inviting have, is this possible to do or does it require a user-popup?