Unable to send app invitation to facebook friends [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
When i send invitation to friends, friends receive that invitation but nothing has opened. When user get invitation and click the url is made which is given below -
https://apps.facebook.com/invitationitesting/?fb_source=notification&request_ids=528827943820609&ref=notif&app_request_type=user_to_user&notif_t=app_invite
this is not working now this url is same as url :-
https://apps.facebook.com/farmville-two/?fb_source=notification&request_ids=119410701597152&ref=notif&app_request_type=user_to_user&notif_t=app_invite
I think i forgot some formalities in app setting. Please help me to solve this problem .
Thanks in advance.

Please check below link its describe the step-by-step process.
http://developers.facebook.com/docs/tutorials/ios-sdk-games/requests/
Hope its usefull for you

Related

Is there any way we can get chat data of my friends or friends of friends? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to get chat history data of my friends or of people following my page.
is there any way to get that ?
You can't get it for the people who are following your page, but if you have a facebook app then you can get the messages(chat) for only the people/users who have authorised your app and have given the permission of read_mailbox to your app.

how to get twitter feeds from my account? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am developing an app that shows twitter feeds from my account . I integrate twitter for posting data,image or any link.I searched in google for getting feeds....
Please give any idea .Thanks
you can fetch tweets of specific user using below link:
https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=username&count=25&page=1
A good tutorial is http://mobile.tutsplus.com/tutorials/iphone/iphone-json-twitter-api/
Twitter API is available after iOS5.
You an get all information about that in here
https://dev.twitter.com/docs/ios
If you are searching for getting users timeline feeds. Here it is
https://dev.twitter.com/docs/ios/making-api-requests-twrequest

customize friend invite in as3 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to build a customize friend invite inside my flash application.
I don't want to use the Facebook ui box.
Any idea what is the best solution for it?
Thanks
I think you have to do a custom graphic and then take all the user's friends.
Then you have to use as3 to select friends and save it into an array.
At the end you have to do the final call to Facebook to invite all the selected friends.

Facebook Auth Dialog Preview is deifferent than actual login [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
The facebook Auth Dialog preview shows
"the app may, post on your behlaf..."
but when i try to login the option is not present and while a user can login. no posts will be made.
why are they different and how can i get posts on my behalf to the login?
I had this problem and solved it by using the scope parameters requesting the correct permissions.

Is it possible to postpone the delivery of a post on a wall? (using Facebook IOS SDK) [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I will click 'post' and then I will close the app, but I want the post to be delivered after 1hour. Is it possible or How can I do this?
Thanks in advance
It is not possible. You can request up to 10 minutes of background execution time, but that's it. The only way to do something after an hour is display a local notification that prompts your user to re-open the app. You can't force them to do it though.