how can get the mutual friend of google plus in iphone sdk - iphone

I am using the developer Google https://developers.google.com/+/api/oauth.
I want to get the mutual/common friend in api.
Can it is possible?
Thanks

This is not possible with the current REST APIs for Google+.
If you'd like to learn more about what is available, you can check out the reference docs. If it's an API that you need, you can also request it using the platform issue tracker.

Related

Facebook Ads SDK for .net core that use Facebook Marketing api v5.0

I tried to find Facebook Ads sdk for .net core, but i find only skds that use deprecated version of Facebook Marketing api, and for this reason not working. Anyone know a updated sdk?
Thanks.
As far as I know, there is no updated SDK. Just use a HTTPClient and consume Rest endpoints with GET and POST requests. It's very easy to use.
Starts with the official documentation and look for the cURL examples to see how you need to construct your queries.

Is it still possible to register my FB application to use Facebook REST API that is marked as deprecated?

Is it possible to register my FB application to use Facebook REST API?
Or is it possible to authenticate in facebook mobile app with no redirection?
You do not need to register an app with a particular API - just go ahead and use it, the instructions are all there. However, Facebook recommends that you do not use the REST API as it is no longer being supported or updated. Use the Graph API and/or FQL - these are under active development and they're what most of the development community use.
Regarding the mobile app issue, could you give a little more detail? The OS and SDK you're using, for example?

Using Facebook check-in feature in Windows Phone 7

Can any one provide any sample to use the Facebook Checkin features in my WP7 app. Also on using the Facebook sdk v6.0.1, there is no Get() method, I can see only Getasync().. Can any one give suggestion on this.
Thanks in advance
WP7 builds of Facebook C# SDK does not have synchronous methods. You will need to use the async alternatives using XAsync methods like GetAsync, PostAsync or DeleteAsync.
With the Search option with the Graph API we can get the nearest places for Facebook checkin
For example:
https://graph.facebook.com/search?type=place&center=13.08784,80.27847&distance=50000&access_token=DeviceToken
Getasync() is just a task-based version of Get(). You should be able to use it to make get requests to the platform, just as you would with Get. Example:
GetAsync("https://graph.facebook.com/me/checkins?method=post&place=110506962309835&coordinates={'latitude':'37.4163458217','longitude':'-122.15198690595'}&access_token=YOURACCESSTOKEN")
You can search for nearby Places via the Search API. See here for documentation developers.facebook.com/docs/reference/api/#searching. Example:
https://graph.facebook.com/search?q=coffee&type=place&center=37.76%2C-122.427&distance=1000&access_token=AAAAAAITEghMBAO1EYjStduqRsXrouwvoXm0ZBsj9LuD4miJiguLIgE5v7fwXSK8empPcUlacI6Gf34I5a9VTjLHyCb0eYOJODvsnMQQZDZD

Facebook and iOS

Is there an open source API that allow me to post on groups of Facebook? Secondly, do I need to create an application for that or no need? I'd like to do that through iOS.
You should be able to use the Facebook Graph API and simple HTTP requests (using the iOS SDK) to do this. There's also an actively developed open source Facebook iOS SDK that should make this process even easier.
FaceBook has an API - have you checked to see if what you want to do is supported?
As far as their being a need - FaceBook has their own iOS app. Do you want to do something that it can't already do?

How to integrate twitter,facebook into iPhone app ?

I want to put facebook,twitter,flickr into my iPhone app, so that users can easily login in and post message from my app easily.
Put the question here is to get some clues or existing works for this purpose.
After searching, I get some related works here
http://code.google.com/p/iphone-facebook-twitter-connect-easy-integration-tool/
What is the best one you used ?
There is a new open source project that provides support for both:
ShareKit
This issues has already been discussed a lot in SO.Try to search SO before posting your query.
For Twitter try MGTwitterEngine.
For facebook try Facebook API
For flickr try objectiveflickr
Chk these
Facebook API
Twitter API