About twitter API - api

I want to use the twitter API function.
After the user authorization, it will automatically follow my account.
Authorization has been completed,but it cannot be tracked automatically.
I can't find the API file.
Which api file correspond to this function?
Thanks

You want statuses/home_timeline documented here: https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-home_timeline.html

Related

How to use Get account/settings in twitter API?

How to use Get account/settings in twitter API, don't like other functions, there are no parameters(such as screen_name) for this function,and how to spectify the user and return the spectify account settings?
Get account/settings in twitter API
The request is implicitly for the authenticated user.
Requires authentication? Yes (user context only)
So it isn't needed to provide parameters as you can only call this as yourself. Provided you are correctly signing requests it should just work.

How to make twitter api calls using access token

I have managed to get an access token from the twitter api. Now I want to use that token for my further data fetching things, so please help me here to get the details of my twitter account.
For example, lets say I wanted to get the user's data, so when I tested this in apigee console, I got my result.
But how to get the same result, using same api, by hitting on a browser using the access token
something like this
Please help
It's a little more complex than the URL you suggested, but you can use Twitter's OAuth tool to generate the OAuth signature you need to make requests to its Home Timeline API call.
You can find the OAuth tool here:
https://dev.twitter.com/docs/api/1.1/get/statuses/home_timeline#oauth-tool
it's not like that when making twitter api calls you need to send consumer key, consumer secret, your_access_token and your_access_token_secret together
Eg: oauth_consumer_key="KEY",oauth_signature_method="HMAC-SHA1",oauth_timestamp="TIMESTAMP",oauth_nonce="NONCE",oauth_version="1.0",oauth_token="YOUR_TOKEN",oauth_signature="SIGN"
Source: https://twittercommunity.com/t/getting-the-user-details-using-access-token/6325/3

Linkedin API to get public data

I want to use the Linkedin API to get details of jobs posted by any company. This data seems to be public, so do I need to integrate Oauth?
The LinkedIn API isn't designed for developers to grab information and present it to people who haven't authenticated (public display). Making calls as a single authenticated user to store it or present it elsewhere is against the Terms of Use for the API. Additionally, you can't store the data you get - it's just designed to present to the authenticated user.
If you want to use the API to present this information, your users need to authenticate with LinkedIn and then you can make the call on their behalf. This is probably easiest to do using the Javascript framework.
The data is not quite public. You need an API key and you need oAuth to make API calls. Probably you dont need it if you just want the public profiles. Read the docs (RTFM).
http://developer.linkedin.com/rest
http://developer.linkedin.com/documents/job-search-api

Using Flickr API via Objective-C with normal login/password

I am trying to use Flickr API via Objective-C. Can I get a user-related information like shared pictures just using login and password that user has used to register in Flickr? Or the user needs to get key/secret pair bound to a particular application?
I've seen some of the Flickr tutorials out there, but I believe you need an api token from Flickr to pull in the image feed.
Here is the tutorial I used, which also contains links to get your api key.
iPhone JSON Flickr Tutorial Pt 1
The framework 'ObjectiveFlickr' is by far the best tool for the job here:
https://github.com/lukhnos/objectiveflickr
I've used it in heaps of projects.
It'll manage all your API authentication and requests.
No, you can't just use a username and password to access private information. Yahoo/Flickr use OAuth which is a bit more involved. There are also a few open source Flickr API frameworks that should do a lot of the work for you. (I've not used any myself, hence the lack of a recommendation.)

Post Google Plus Stream

Any idea about how to post on our Google+ Stream using javascript or json?
I'm not searching how to use the google+ button, I need to post on the wall(or stream)
The (recently announced) Google+ API currently provides read-only access to public data. All API calls require either an OAuth 2.0 token or an API key.
Here's some information to help you get started.
http://googleplusplatform.blogspot.com/2011/09/getting-started-on-google-api.html
http://developers.google.com/+/
These two urls do what you want, but need a confirmation from the user:
https://m.google.com/app/plus/x/?v=compose&content=YOUR_TEXT
https://plus.google.com/share?url=YOUR_URL_HERE
No public API is available, so just register for the private API and check for yourself
https://services.google.com/fb/forms/plusdevelopers/
EDIT: The API is available now:
https://developers.google.com/+/
That's the downside of the Google Plus...
See here: http://code.google.com/p/google-plus-platform/issues/detail?id=41