Linkedin API for full profile access - api

I want to access the full LinkedIn profile information using the API, but I have only managed to access the basic profile and e-mail address with the API-key and Secret Key.
Am I missing something or is it more restricted in some manner?

How did you get the LinkedIn API ?
Did you applied for partnership because as far as I know LinkedIn changed the policy of API , so the API will be available only through the partnership and for that you've to pay different fee based on partner program
Have a look here, the same thins we've too.
I've fulfilled the application 3 weeks ago but no response yet.
***Subject: Having acces on LinkedIn API [160721-001958]****
I had spoken with one of our experts on this and he had confirmed for me that you can still go through other workarounds for this.
Go to https://developer.linkedin.com/partner-programs
Click on either of the options based on your need. You will be directed to another page where if you scroll down you will find the button for Apply to become a LinkedIn Solutions Partner. Click on that.
You will be directed to a page that says Apply to become a LinkedIn Partner and you can fill up the form from there for access.

Related

How to integrate Google business messaging through API

Problems:
I am unable to enable Business Messages API, Because "Business Messages API" is not showing API list, While i am going to enable the API through the
https://console.cloud.google.com/apis/dashboard
I want to use auth token, while hitting the API, but the document is saying use the service.json for the credentials. i am following these doc. I am using "Google\Client()" with Laravel application.
https://developers.google.com/business-communications/business-messages/guides/how-to/agents?method=api
I am following these steps:
Login with google business account in the Dashboard
App taking multiple permissions as I have attached the permissions list and taking the auth token.
Open the chat box for the Business.
So please guide me, where i am going wrong. What is correct way to implement this.
Requirement:
I want to create a custom chat box for google businesses, Where business owner will login into the web app and He can easily manage the multiple business chats in one dashboard.
As per your given information, you have to be a partner of Google. As per google documentation, you need to be a partner of google and then you can create the agent and can send and receive messages. You can integrate the business messages API by following this documentation:
https://developers.google.com/business-communications/business-messages/guides
In this process, you need to be a partner of Google. The complete process is given on the link. If you follow this link, then you can use their built-in libraries easily and can send messages easily.
So far the permission for API, it might not be found for you because you might have to take permission for the particular project that is registered on google and then you will see the business messages API and you can enable it and use it. The reason as per the basic step:
https://developers.google.com/my-business/content/basic-setup
Sometimes, you have to submit the request form to take the API access for particular APIs. Or Share how are you using that API.
If you do not find a form for business messages API then you can ask for the information from bm-support#google.com. they mostly respond on a working day.

LinkedIn: Find Profile by VanityName - Approved developer

My team and I are looking to add to our app several features of the Linkedin API that are currently restricted. In order of importance to us:
Find Profile by VanityName
Webhooks
Video UGC Post
We already quite understand that Webhooks and Video UGC Post are REALLY restricted. What about the first one?
In general, how can we get in contact with the right people to get such approvals? Nowhere it is mentioned that we cannot apply, just that it is restricted.
We are very happy to work with Linkedin requirements, whatever they are.
Thanks.
Thibault Drevon,
CTO of bobcaat.
To be able to find profile by VanityName with LinkedIn API you need to become a LinkedIn Partner.
First you need to create an application https://www.linkedin.com/developer/apps
Once you've created an "application" you can then apply to become a LinkedIn partner. To apply go to https://developer.linkedin.com/partner-programs/apply
LinkedIn's Business Development team will review all applications and will endeavour to respond to you within 15 days.

whatsapp business api is only used pre-selected company from whatsapp?

I guess whatsapp business api client is only used pre-selected company which whatsapp grant.
So, i want to know my guessing is right or not.
According to official guide, i need to register phone number to whatsapp.
I guess here exist whatsapp menu. but i can't see menu. (Sorry, i dont know the way website display english language)
Official guide mentions this. "If you cant see WhatsApp account option, you cant use Business API yet"
So i search how can i access Business API, and i can see this in WhatsApp FAQ.
Finally, according to below link, WhatsApp has granted to 90 pre-selected companies.
https://medium.com/callbell/what-changes-with-the-release-of-the-whatsapp-business-apis-46994316b763
As a result, if i want to use whatsapp business api, i need to use service which is provided official whatsapp partner company like twilio.
Someone tell me that My result is right?
Yes, you either need to fill out the request form to request access to WhatsApp Business API or use existing solution providers like Twilio.

Instagram closed api for POST and DELETE methods.

So as of now Instagram changed the policy and now i can't create an access token with relationships+likes scope. But third party apps like Crowdfire still work. On official Instagram page they said that only third party apps that will receive the privilege of advanced scope are the apps that Instagram itself approved. Anyone had any experience filing the application for approval? Or can you guys give me tips of how to bypass that.
p.s.
I have an app that creates multiple access_tokens for different client, nothing spammy, just likes the feed of users and automatically follows people that followed them. (yeah, some people are into that) And mass unfollow (idk if thats bad or not)

Google+ api login

I am trying to create a site where you can login with Google+, but I am having some problems understanding the Google+ API.
Can anyone explain to me how to fetch information, such as e-mail, name, id, etc. or give me a good link for a site where I can find some documentation about this.
Before you suggest me to this site I have already read it but not finding out how to fetch info.
Google+ Sign-In provides users the ability to authorize your application to retrieve data from the Google APIs based on the scopes that you set for your button. When a user authorizes your app, the sign-in callback returns you an OAuth 2.0 access token. This token gives you the ability to queries any of the APIs that your scope granted access to, this is not limited to Google+ APIs. You pass your access tokens to the API when you make requests.
Basically, you read the prereqs and didn't continue reading the API docs for the lower level details specific to the API that you are interested in. In this case, it sounds like you want to retrieve a person's profile (A "Person resource") by using the people.get method. At the bottom of that page are code examples for a variety of languages.