How to obtain OpenAPI spec for Instagram APIs? - openapi

I am trying to create a service where I need to use Instagram APIs to fetch datapoints from the platform. It would greatly help if I had OpenAPI or Swagger spec for Instagram APIs. Please suggest where should I look for it? Also, if you have worked with Instagram APIs, how did you generate specs or how did you manage without one?

There's no official OpenAPI definition for Instagram APIs.
Someone created an unofficial one here:
https://github.com/darklynx/swagger-api-collection/blob/master/api/yaml/instagram.yaml
but it was last updated in 2016 so it's likely very out-of-date.

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.

Uber API integration

Im curious as to how advanced the API is and what are my options when creating the API? My company is creating an online concierge for Vegas and I wanted to use Uber API for pickup and dropoffs to nightlife venues.
Please look at the Uber developer website: https://developer.uber.com/ which lists different use cases, solutions, showcases, etc. To begin integrating look at the 'docs' section.
StackOverflow should be for a specific technical coding questions. If you have anything like that, please follow up with a new question.

OAuth integration in iphone app

I have one problem regarding OAuth integration in iPhone App.
Can anyone help me how to integrate OAuth 2.0 with facebook in iPhone ?
I have referred so many sites about OAuth but I haven't got satisfied answer yet. I referred this question of stackoverflow. There is one good option about ShareKit. But my client wants only OAuth 2.0.
I downloaded framework from google code. I integrated it in my application. But How to use it ? Without guidance I can't implement it in proper way.
I have got stuck between my application and 0Auth 2.0 since last 3 days. Please can anyone give me idea or demo project or any another tutorial ?
Rather than implement OAuth for Facebook, make use of the Facebook iOS SDK which makes handling Facebook Auth and Requests much easier. You can read about it and download it here... http://developers.facebook.com/ios/
I just done a research
This post will really help you
Also please look at the below posts
iphone-facebook-oauth2-graph-api
OAuth and Facebook iPhone SDK
The framework you mentioned in your post is not for OAuth 2, but for OAuth 1.0a.
You can try the OAuth2Client we developed for talking to the SoundCloud API. It's build against draft 10 of the spec. I'm not sure which one is used by Facebook. Unfortunately the spec is not final yet and over the years different services adopted different drafts of the spec.
If you're able to argue with your client I'd try to convince him to let you go with the official iOS SDK. This gives you many benefits like automatic token refresh, single sign on via the official app & much more.

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

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.

Is there a way to use pure RESTful API to access DropBox rather than using its SDK?

I see there are numerous examples to access the Dropbox service by its SDK. I need use RESTful API to access both Dropbox and another service provider which is similar as Dropbox but doesn't provide an SDK. So I plan to encapsulate a unified interface.
But Dropbox's website https://www.dropbox.com/developers/docs has no clear flow to describe how to use a pure RESTful API to do what SDK does. I'm curious if some sample code did that?
Please see the official documentation:
https://www.dropbox.com/developers-v1/core/docs
Note that the above link is to the old and deprecated v1 API.
Here's the HTTP API docs for the current v2 API: https://www.dropbox.com/developers/documentation/http/documentation
http://www.codeproject.com/Articles/385431/Android-RESTful-OAuth-upload-file-to-Dropbox#_rating
Its all there