Questions tagged [facebook-app-requests]
205 questions
1
vote
1 answer
Why does Facebook login ask for different (more) scopes?
I want to trigger a Facebook login and I am accessing this URL:
https://www.facebook.com/dialog/oauth?client_id=398192236928167&scope=user_photos&response_type=token&redirect_uri=http://www.useralbum.com/callback.html
I am specifying…

adrianTNT
- 3,671
- 5
- 29
- 35
1
vote
0 answers
FBWebDialog passing params to FB app page?
I am using the FB iOS SDK to invite friends to my app. I am able to use the FBWebDialog to post the "Invite" which shows up in the recipients notifications. The link then redirects that recipient to the Facebook app page for my app. The FB app…

andrewmclean
- 427
- 3
- 15
1
vote
0 answers
Facebook app requests in native Android app: Android notification directs to app page instead of app
I have an app that uses the Facebook SDK and the requests dialog to sent app requests.
When the app request is received on an Android device running the Facebook app an Android notification is generated - which is all good.
When the user then clicks…

ste7e
- 46
- 3
1
vote
0 answers
FB iOS SDK How to test: Send request and receive it?
im a iOS game developer, im new in this stuff of how integrate facebook SDK. I need facebook to sent and receive virtual gifts from device to device, such as coins, lives, so on.
I already logged in and i use the code of making a request in the…
user2359989
1
vote
0 answers
Facebook Activity Feed in Mobile Game (iOS and Android)
I'm wondering how to feed an Game Activity on facebook from my mobile application(android game).
I know hot to make a post in the wall in facebook but I want directly to post in GameActivity not on the wall.
For example here (Game Activity Facebook)…

Shial
- 1,386
- 19
- 31
1
vote
0 answers
Created an app to automatically post wordpress blog posts to facebook page - only I can see posts
I have installed a plug-in called Simple Facebook Connect in Wordpress for my site, runtheworlds.com. I had to create an app, put in the settings into the plug-in, and it's supposed to let me post blog posts on my facebook fan page: …

Daniel Butler
- 11
- 1
1
vote
2 answers
IOS fb invites sent but not shown on users wall
I am sending requests from my app to the fb friends but i am not getting any notification on the wall of fb user whom i sent request ?
I am using FB SDK 3.2 (i hope its the latest)
Following is the code i am using to send…

X-Factor
- 2,067
- 14
- 18
1
vote
1 answer
The graph api /me/apprequests return http error
I use
FB.api('/me/apprequests/?access_token=' + access_token + '&date_format=' + escape('Y/m/d H:i:s eO'), function(response) {
if(response.error)
{
to get user's app requests.
but some times,some users cannot get the app requests…

Edward Lee
- 21
- 3
1
vote
0 answers
Opening facebook app request notification from android device
I want to invite Facebook friends to try my app with Facebook 'apprequests' method.
It works ok. The friend gets the notification, but if he clicks at the notification from the android notification bar and not from Facebook, it opens Facebook app…

Alex248
- 427
- 4
- 15
1
vote
1 answer
App generated request using php not working
function generateAppRequest() {
try{
$app_id = '';
$app_secret = '';
$token_url = "https://graph.facebook.com/oauth/access_token?" .
"client_id=" . $app_id .
"&client_secret=" . $app_secret .
"&grant_type=client_credentials";
…

aas2909
- 136
- 4
1
vote
1 answer
Facebook app invite delegation mixup
I'm sending a Facebook app-invite from my iOS app, and am trying to implement a success/fail flow using blocks.
I have created a class to wrap my communication with the Facebook SDK which exposes a send invite method.
In that method, I have the…

Stavash
- 14,244
- 5
- 52
- 80
1
vote
1 answer
Is it possible to authenticate WITHOUT Facebook installing an app?
I'm building a public voting system for a company's event. Facebook auth would be a feasible way of implementation.
The problem is that the client specifically doesn't want an application to be installed in the voters profile. Is there a way to…

Antti Salo
- 13
- 4
1
vote
0 answers
how to get the offline_access with the new facebook php sdk_api
Referring to the following URL-:
https://developers.facebook.com/roadmap/offline-access-removal/
The existing way to get the user's information(his face-book friends,date of birth, post on friends wall ) using offline_access will not supported from…

Amit Sharma
- 625
- 6
- 5
1
vote
1 answer
Using photos from likes to use in application
I am in the process of creating a Facebook Application, specifically a social game. The game requires that users upload a photo of their choosing. However, if the user doesn't have a photo they wish to upload, they would select one from a stock of…

Patrick Bresnahan
- 11
- 1
1
vote
0 answers
Notifying all users of my app that there is new information
The app we're building wants to notify all of its users that there is new information available.
Basically, the users follow hints to find a certain place on a map to win a prize.
For a couple of weeks there will be new hints available at specific…

Jeroen
- 31
- 2