I am new to this feature of linkedin.How we can post the status on the company profile using the api provided by linkedin?
You could use the LinkedIn's Company Share API http://developer.linkedin.com/creating-company-shares
You should use some library that handle the OAuth 2.0 authentication-authorization or take a look at http://developer.linkedin.com/documents/code-samples (if are able to understand code).
The process authorization process is simple - it redirects the user (your company profile) to LinkedIn Signin page where he authorize your application and give you Access Token.
http://developer.linkedin.com/documents/authentication
Your Application with help of the Access Token could Share on company's page (linkedin profile)
The LinkedIn documentation contains a lot of information regarding OAuth 2.0 and Share details
Update: have found the usefull link. http://marketing.linkedin.com/company-pages/?scr=s-bl
Related
I have created a B2C tenant with an user flow that contain a linkedin way for connect.
In my ASP.NET website, i want to display linkedin's informations of the user connected.
In my research, i have seen different way to make this but it is possible only with custom policy and i need to know if in 2020, there is a solution or not, to get user info by linkedin.
Thank you in advance.
Sounds like passing an access token through a user flow to your application can be useful. With the access token the application will be able to call the LinkedIn API directly.
We are using previous version v1 of linkedin. We are getting firstname, last name, email, heading, profile url,profile image etc. Now linkedin created v2 and giving access liteprofile only. And we are getting firstname, lastname ,email, profile image only. not able to get profile url.
We are using this authentication in survey site I need profileurl as well in authentication that possible with basic profile.
In need profile URL in this API. I have already applied for developer program but rejected.I can get this url by paid services if any from linkedin please confirm?
GET https://api.linkedin.com/v2/me
Linked In Login Integration response
If you're a programmer, you don't need to buy any paid services. You can use Google Custom Search JSON API to get LinkedIn Profile URL, even Job Title ;-)
site:linkedin.com {query}
Good luck!
Is LinkedIn exposes APIs to fetch someone's profile info from LinkedIn using email or name?
You will have to be logged in to view this, but here is the People Search API link
I am trying to provide get access to LinkedIn data in a Spring-based web application.The idea is to connect to a LinkedIn account, get LinkedIn data(education or employer information for argument sake) & show that data on my application's page. Now I studied a bit on Spring Social OAUTH abstraction for LinkedIn(using spring-social-linkedin) and also read some code samples for accessing data but I am still unable to wrap my head around this flow and how do I write the code for my specific purpose?
Do I create a specific web page where user put's in his LinkedIn login details and the ConnectController (already intialized in IOC container) will then take care of the connection?
If so what will be the action & method values on the Login page?
If no login page is to be created, how will LinkedIn account details be inputted by user and How will ConnectController get the account details to authenticate?
Once authenticated, how to navigate through user's data?
If someone can explain in a step-by-step manner how to approach my requirement here,would really appreciate it.
we used to have a working augmented system to login facebook and get&manage advertisement data. then we need to change the facebook account password of the user we used for login automatically in php. and old access token we used in PHP to login facebook is now not working.
I have tried to create a new access token with Graph API Explorer but I've got this error: appsecret_proof validation. then when i commented out this check and continue then I have recieved this error (line breaks added):
{"error":
{"message":
"(#294) Managing advertisements requires the extended permission \
ads_management and an application that is whitelisted to \
access the Ads API",
"type":"OAuthException",
"code":294
}
}
I almost don't know anything about facebook api how to use it.
Could you give me a detailed explanation of how i can create and access token with the ads_management right?
As Max points out, the Facebook documentation is the best source for detailed explanations of how to get access tokens and the ads_management extended permission. The Facebook Ads API guide overview provides the specific details you request including the link to the application form for receiving Ads API app approval.
The Ads API is a restricted platform which may only be accessed by whitelisted Apps.