apprequests

Apprequest of Android Facebook sdk 3.0

感情迁移 提交于 2019-12-08 06:01:17
问题 I am using the updated Facebook SDK V3.0 final for Android. I am trying to send app requests to facebook frineds who do not have the application. The code is: public void fbookinvite(){ Bundle postParams = new Bundle(); postParams.putString("name", "X"); postParams.putString("message", "DOWNLOAD X."); Session session = Session.getActiveSession(); postParams.putString("access_token", session.getAccessToken()); if (session==null||session.getState().isClosed()){ System.out.println("session is

Facebook App Requests are not compelling to invitations to users - whats your usage pattern?

对着背影说爱祢 提交于 2019-12-08 05:34:12
问题 Using the Facebook app requests dialog means I can send an invite to a user. Usually this invite will appear in their notifications menu at the top of their Facebook page. And I will see: "Mike Hogan sent you a request in FooApp" Which is not at all compelling to a user. If they click on this notification, it takes them to the front page of FooApp, without much context of what the invite is. I'm experiencing about 85% tail-off of my App Requests done this way. Understandably. Users do get a

Facebook Request Prompt not loading for Game in Firefox

允我心安 提交于 2019-12-08 02:59:47
问题 I am a developer and have recently noticed this issue with Firefox. I've tried in FF version 26 and 27. Also, I've tried this on different flash player versions. I'm able to see the same confirmation dialogs in Chrome but in Firefox it gets stuck on loading screen. Also, the callback function is not getting called so it makes difficult to see the error. I'm using the same code in both Chrome and Firefox. FB.ui({method: 'apprequests', message: 'My Great Request', to: {user-ids} },

facebook app request notification not showing up in Facebook iOS app for mobile web app

偶尔善良 提交于 2019-12-07 10:25:09
问题 I have a Facebook app that is configured as Facebook canvas app and a website with site and mobile site URLs When the app sends apprequests (invitations) they only show up in the recipient's notifications in the desktop browser and not in the Facebook iOS app. This makes no sense to me as the app does support play on mobile as it has a mobile web url and so the notifications should appear in the Facebook iOS app. How can I ensure my app requests show up in the Facebook iOS app? Am I missing

Facebook Request Prompt not loading for Game in Firefox

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-06 12:47:31
I am a developer and have recently noticed this issue with Firefox. I've tried in FF version 26 and 27. Also, I've tried this on different flash player versions. I'm able to see the same confirmation dialogs in Chrome but in Firefox it gets stuck on loading screen. Also, the callback function is not getting called so it makes difficult to see the error. I'm using the same code in both Chrome and Firefox. FB.ui({method: 'apprequests', message: 'My Great Request', to: {user-ids} }, requestCallback); I've attached a snapshot of the FB dialog where it gets stuck. http://screencast.com/t/cqU8LFMpL

Is it possible to customize the apprequest notification message similar to BranchOut?

て烟熏妆下的殇ゞ 提交于 2019-12-06 06:46:45
问题 I've noticed that BranchOut requests have a custom notification message and stand apart from other app requests in my notifications. Is this because BranchOut has a special partnership with Facebook? The documentation states that the "message" value will not be displayed in the notification, so I'm curious how this is being done. 回答1: No it is not possible even with new_style_apprequest parameter in FB.ui options. This used to work earlier but it has stopped working lately. It was anyways an

Notification for facebook app requests not showing up

二次信任 提交于 2019-12-06 04:06:07
问题 I created an application for a website and gave it a site url. (The site url is actually not real. It is overridden in my local hostname file for development purposes. Does this matter?). I used the sample code for creating a request dialog to send requests to another facebook account. I used the multi-user interface, without the to: field. When I refresh the page in my other facebook account, I see a red 1 on the world icon for just a split second, but then it disappears and there is no

Facebook app request dialog not sending request

亡梦爱人 提交于 2019-12-06 03:04:25
问题 We have a website that uses Facebook for login. We have an invite page that displays the user's facebook friends and lets then invite them through facebook: $('.invite_container a').live('click', function() { var link = $(this); FB.ui({method: 'apprequests', message: "Join me on Tailored", to: link.attr("user_id") }, function(data) { console.log(data); }); }); I get the appropriate response back from Facebook, which includes the request ID and the ID's of the users who were invited. No one

facebook app request notification not showing up in Facebook iOS app for mobile web app

非 Y 不嫁゛ 提交于 2019-12-05 17:39:22
I have a Facebook app that is configured as Facebook canvas app and a website with site and mobile site URLs When the app sends apprequests (invitations) they only show up in the recipient's notifications in the desktop browser and not in the Facebook iOS app. This makes no sense to me as the app does support play on mobile as it has a mobile web url and so the notifications should appear in the Facebook iOS app. How can I ensure my app requests show up in the Facebook iOS app? Am I missing some kind of configuration? I had the same issue, but after adding a "Store ID" in the FB iOS Platform

Facebook Android SDK, graph api >3.2 and 4.0 sending app request issue

左心房为你撑大大i 提交于 2019-12-04 20:07:23
I am trying to send app request to my facebook friend after authentication by using the following code snippet. public void sendApplicationRequest(final List<String> userIdList, final String message, final String title, final int requestCode) { final Bundle parameters = new Bundle(); parameters.putString("title", title); parameters.putString("message", message); parameters.putInt("requestCode", requestCode); parameters.putString("frictionless", "1"); String to = getListOfUsersAsString(userIdList); if (to != null) { parameters.putString("to", to); } activity.runOnUiThread(new Runnable() {