Request dialog multiple friends - facebook-graph-api

I saw this on "Sims Social" , wondering how they do that
:
screenshot

It's just the standard app request dialog. You can read about it in the developer documentation for dialogs.

Related

connectycube server-side read api

As the developer of my app, I want to be able to read and process all the dialogs / messages that my members have written. Including the private dialogs.
I couldn't find any way in the API documentation that makes all the dialogs available. Since all dialog history is accessible via the Connectycube admin panel, it should also be available in the API.
Seems there is no such an API, as only a user can get own chat dialogs.
There is only one way to do so - via Admin panel, where all chat dialogs available for an application

Facebook FB.ui "share" dialog - post to feed, but not share a link?

I'm trying to post message into user's feed. But there is no more link to the FB.ui "feed" dialog.
If you use direct link - you'll see that this feature is marked as "Legacy Feed Dialogs" (but still work).
We have replaced the Feed/Share dialogs with a new, modern Share
Dialog that can perform all of the same functions as these older
dialogs, but additionally can publish Open Graph actions without any
Facebook Login required. Read our guide to this newer dialog.
They say "can perform all of the same functions" but I can see nothing about a simple post to feed, not a link sharing. There are no such fields as picture, description, picture etc...
Of course usually you can share a link to a page with open graph tags.. But I can't - I need to make a post from facebook app to share a picture at the user's wall.
How can I do this? Should I continue to use "feed" dialog? :)
Thank!

Allow user to select friend(s) from a dialog that lists all of the user's friends, and post on their wall using Javascript Facebook SDK

I would like to have a button in my Facebook app that will bring up a dialog that will allow the user to pick a friend's wall to post on. I was pretty sure this kind of dialog exists but so fare I have only been able to find a dialog that will allow you to send messages to a friend or post to a specific Facebook user's wall (without a dialog) but I cannot find anywhere in the documentation where it describes how to bring up a dialog that allows selection of user's to publish to. Is this possible? If so could someone post a link to some documentation?
You can use Facebook's Multi-Friend-Selector(MFS).
Documentation: https://developers.facebook.com/docs/guides/games/custom-muti-friend-selector/
I ended up using the thesedays Facebook-friend-selector which works very nicely.
It has a Facebook style look and feel and filled my needs:
https://github.com/thesedays/Facebook-friend-selector

fblike api of facebook

hi i am using fblike api of facebook. this is working fine. i am using this script
when i open this page a text "fblike"and facebook icon are showing.but when i click on this a popup window opens and asking for login on facebook.
my question is that when user like this page the text which is display previously "fblike" change to "1 person".
can i stop this. i just want when user like this the texe should not be change.
I can do this or not?
Short Answer: You cant do that... :)
But you can achieve this by adjusting height and width of STANDARD LIKE BUTTON which will hide other part of that plugin (users, counter, etc) :)

MFC : How to capture a link click event in a web browser control?

I have an MFC application that has a webcontrol. When clickable links are clicked, it opens using IE, not the default browser.
Questions :
Is there a way to force it to open using the default browser?
If not, how do I capture the Link Click event so I could just manipulate the click event later?
Thanks...
No, not as far as I know.
Check out the articles on http://ehsanakhgari.org/article/visual-c/webbrowser-goodies . It has a number of articles that show how to set up an event sink using IDocHostUIHandler etc. to handle events like clicking of links. I'm not sure which interface to implement, it's been years since I last did this. Then, you use ShellExecute() with a url as the third parameter to open a url with the default browser.
You can capture click events by using "HRESULT STDMETHODCALLTYPE Invoke" see MSDN for more details.
And here's a great example that shows how to open your URL using the default browser in the same window, or opening a new window > http://www.codeproject.com/KB/IP/urlnewwindow.aspx