how can i fetch Gmail user Contact list in my Ios app using Api? - objective-c

i am trying to fetch Contact list of user after Login in gmail. i used GoogleSignIn/GoogleSignIn.h and framework. i can fetch only user name, email .
so how to fetch user contact list using api or other way .
all steps from starting.

Take a look at the 'Retrieving all contacts' section at the Google Contacts API guide

Related

How to fetch user and page/company posts from linkedin

I have been checking the available linkedin API methods but cant see on how to fetch post by user and by page/company. What I need to do is that, user can enter username or a page/company name then, fetch news posts by it. Maybe you know some workarounds. Thanks
References:
https://developer.linkedin.com/docs/rest-api
https://apigee.com/console/linkedin?authTypeVal=oauth2&afterSuccessfulAuth=true
Since October 2016 Linkedin updated the API an restricted actions to sign in, share content and manage companies, so you only can fetch the company's posts.
If you already have the user(company's admin) token access use this endpoint for get the posts of the page:
GET "https://api.linkedin.com/v1/companies/{id}/updates?format=json"
Detail Infomation
For search user
https://api.linkedin.com/v1/people/~
Method : GET
Add a format=json URL argument to the end of your API call.
Add this
HTTP header to your API call: x-li-format: json

twitter's user search api:- search using email id

I am working on a requirement where I need to fetch user profile from various social media sites. For example, I can use the twitter's user search api to fetch user profile using the user name. But i have only email address and want to fetch user profile data from twitter using email address. I found out that twitter's api does not support user search based on email address. Similarly facebook API also does not support user profile search based on email ID. Is there any other way to fetch the user profile data from these websites using email Id's?

Remove a contact using Linkedin API.

I have a platform where people can see their linkedin contacts.
I retrieve those users using the Linkedin API. I would like to give the opportunity to my user to delete some specific Linkedin contact.
Is there any way to remove a user using the Linkedin API ?
There is no API call available that will allow you to remove a LinkedIn contact.

Pinterest api - Get user detail

I want to fetch user detail of pinterest's logged in user.
Currently, I am able to to login through api and I get access token also.
Now I want to get that user's detail.
I tried to search for it but not a luck.
Note : I want to fetch that user's pin so I am using below api.
https://api.pinterest.com/v3/pidgets/users/(USERNAME)/pins/?access_token=ACCESSTOKEN
For this I want (USERNAME).
https://api.pinterest.com/v2/me?access_token=YOUR_ACCESS_TOKEN
returns the user data
{“username”: “Name”,
“image_url”: “http://d30opm7hsgivgh.cloudfront.net/avatars/image.jpg”,
“full_name”: “xyz abc”,
}
call this API and get users Details

Get contact list from gmail, yahoo, hotmail

I wish to write an API that can get the contacts list from Gmail, Yahoo and other e-mails. How can this be done? Are there already existing APIs for them or do I need to write PHP code to extract information?
I need a referral system like DropBox has. Has anyone coded it themselves or is it available as open source?
https://www.dropbox.com/referrals
Please guide me in this regard. Any link or explanation will do the job.
Thanks :)
Google has an API: http://code.google.com/intl/en/apis/contacts/
And Yahoo also has an API: http://developer.yahoo.com/social/contacts/
There exists some other which are mentioned in this thread: PHP APIs for Hotmail, Gmail and Yahoo?
simple 5 step to get contact list from gmail
1. open gmail account
2. click gmail dropdown
3. click on Contacts
4. Click on More dropdown button
5. Now click on Export... , and download email db
http://all-easy-tricks.blogspot.in/p/how-to-get-gmailemail-id-contacts-list.html
click here