Custom multi friend selector Facebook Unity3d - facebook

I want to make sure about can we make custom multi friend selector of facebook in unity ?
I got the multi friend selector link . but there is no reference code regarding unity.
So if anyone has tried that feature then help me and share here.
Thanks..

Will you can get friends list using one of my plugins (Android Native or Mobile Social), you will also find friend list implementation example inside, here is example scene screenshot:
http:// i.stack.imgur.com/68y5R.jpg
And in case you do not want to use paid solutions you can get free Unity FB SDK for here.
https:// developers.facebook.com/docs/unity/downloads?locale=en_GB
And use
FB.API("/me?fields=friends.limit(10).fields(first_name,id,last_name,name,link,locale,location)", Facebook.HttpMethod.GET, FriendsDataCallBack);
To get your friends data. More info:
https:// developers.facebook.com/docs/graph-api/reference/v2.2/user/friends?locale=en_GB
P.S. Sorry for url formats. I ma new here, and can not add more than 2 links to my replay

Related

Is there a way to make a Facebook share button in Flutter Web?

I'm making a quiz app in flutter and I'm nearly at the end of it, trying to make a facebook share button for them to be able to share their results in Facebook, and I can't find a way of making it work.
I couldn't find any pub that works on the web.
I tried to use the Facebook JS SDK but it gets too messy for my dart js knowledge, does anyone know a way to do this?
By now my best option is an embedded iframe and a static link... Is that right?
For anyone looking as desperate as I was there's a link in the button Facebook creates for you, if you populate the HTML with the right og tags and dynamically change the link and launch it with url_launcher you can get through it
My Plugin aims to help you with this:
https://pub.dev/packages/share_everywhere
It detects the platform and uses a list of social media icons you provide on a desktop.
And on mobile it uses standard share functionality.
Its a work in progress please let me know what you think and how i can improve.

Built-in Like Button - Facebook SDK 3.0

Does anybody happen to know a good tutorial on placing the ‘I like it’ button into the application?
I’m especially interested in Facebook SDK 3.0 and the so-called Built-in Like button.
So far, I’ve been searching through google and stackoverflow but I haven't found anything about SDK 3.0.
Publishing a built-in like is very similar to publishing a custom Open Graph action. The best resource for learning about publishing built-in likes is Facebook's reference page:
https://developers.facebook.com/docs/opengraph/actions/builtin/likes/
Please see this post regarding likes and this post to see an alternative of adding a like button.
Ideally you could create a html iframe that links to the page. obviously this would open up the webpage to the link of the facebook like button. atm i believe that's how temple run achieve this. does the trick. They're getting many likes from users directed from the ios app temple run itself.

Creating a Facebook App

I am building a website for a client. He has a Facebook page for his business. On the homepage of his site, he wants a feed that will pull in all the updates from his business' Facebook page.
Now, I felt this would be very easy to implement (maybe it is) but I have scoured the Facebook API for any simple way to do this. I am having a lot of trouble understanding which way I should do this. I've settled on using JS to access it, but have no idea where to go from there.
Do I need to create an app? If so, which options do I select so I can access the clients facebook page?
How do I get my app that I've created to show up so a user can authorize it? I have so many questions, and Facebook isn't very good at giving me answers.
Any help is greatly appreciated.
I would suggest you just use the facebook page's RSS feed.
Example
Take his page URL e.g.
https://www.facebook.com/pages/Lazery-Attack/6001014870
Take the number at the end of the url off, and plug it into the facebook feeds URL e.g.
https://www.facebook.com/feeds/page.php?format=rss20&id=6001014870
Voila, you now have an RSS feed you can integrate into the website you are building.
URL Breakdown
The URL is broken down the following way:
https://www.facebook.com/feeds/page.php?format={feedFormat}&id={PageID}
Vaid feed formats are:
RSS - rss20
Atom - atom10
JSON - json
Other Examples
Atom
https://www.facebook.com/feeds/page.php?format=atom10&id=6001014870
JSON
https://www.facebook.com/feeds/page.php?format=json&id=6001014870
Take a look at the facebook API, right here: http://developers.facebook.com/docs/reference/api/page/
You can give it a try here:
http://developers.facebook.com/tools/explorer/?method=GET&path=19292868552%2Fposts
The like box: http://developers.facebook.com/docs/reference/plugins/like-box/ also has the latest posts available
The simplest way is to add a Like Button to the page and make sure "show Stream" is checked on as this will show all recent posts. You can customise the appearance also (e.g. width, height etc).
No App or messy API calls needed!
Try it out here and simply paste the resulting code into your webpage:
http://developers.facebook.com/docs/reference/plugins/like-box/
Not an app, but the Facebook Social Plugins over here at Facebook For Pages

Use of FourSquare API to find nearby places in iOS SDK

How to use Foursquare API to find nearby places in iOS Applications.
As I am new in this environment.. So please help me to find any sample tutorial available on the API.
I had gone through this link, And I got the response "error type" : deprecated so please provide another link for this same solution..
Thanks in advance..
You can try looking at this link for more information about Objective-C libraries that work with the foursquare API.
Edit: Currently this one appears to be the more recent, more chances of it working properly, also good documentation there on how to integrate it. It is the second one listed in the foursquare library page.
Also check out the foursquare developer site in general, you will need to know the different endpoints and what data they return anyway => https://developer.foursquare.com/
this Link is pretty good,comes with little instruction, u can use the search venues,check in,photo services..heaven!
go through foursquare Api page for desired modification.
in the FSQMasterViewController.m file you need to #define kClientID #"yourClientId"
and #define kCallbackURL #"ur callback url"
fix your infoPlist the urlSchemes too

On a quest for the super ultimate facebook share link

Facebook offers two simple methods for pre-poulating someones status for posting.
1) For sharing a LINK: http://www.facebook.com/share.php?u=http://350.org
2) For sharing a message: http://www.facebook.com/connect/prompt_feed.php?&message=350.org rocks!
My question: is it possible to combine these. So if someone clicks your pre-populated link, they get both an attached LINK and a personalized message to go with it?
Thanks!
Facebook moved to Open Graph and realized it by introducing the Like Plugin. They removed the share documentation for a reason!
For you to use the Like plugin.