linkedin

IPhone + Twitter + LinkedIn + Facebook Error : Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1

删除回忆录丶 提交于 2019-11-27 08:27:47
问题 I am using MGTwitterEngine oAuth and LinkedIn iOS SDK in my iOS application with facebook-ios-sdk TwitterEngine : https://github.com/bengottlieb/Twitter-OAuth-iPhone LinkedInIphone : https://github.com/ResultsDirect/LinkedIn-iPhone Both integrated well separately, But when I have used both in application then error coming FB + Twitter = working well FB + LinkedIn = Working Well FB + Twitter + LinkedIn = Not Working and giving error: Command /Developer/Platforms/iPhoneSimulator.platform

No option to save bundle-id of iOS app to “mobile” setting in linkedIn app

微笑、不失礼 提交于 2019-11-27 08:25:48
问题 I am trying to implement share functionality in LinkedIn from iOS app, I have gone through LinkedIn SDK Doc. I am stuck when Configuring my Bundle ID with my LinkedIn app As they have mentioned in documentation, iOS setting in following image After creating app using create app in linkedIn link, iOS setting is not available for iOS in "Mobile" setting page. but as per linkedIn documentation option should be in "mobile" setting. After creating app in linkedIn I know this is silly but I saved

Getting Email Address from LinkedIn API

本秂侑毒 提交于 2019-11-27 07:52:40
问题 I want to include a "Sign Up using LinkedIn" feature in my app. I'd like to be able to get some information, such as name and email. By default I am able to get a name, but I'm stuck on getting the email. My results are in JSON. Here's my code: - (IBAction)logInWithLinkedIn:(id)sender { if ([_client validToken]) { [self requestMeWithToken:[_client accessToken]]; } else { [_client getAuthorizationCode:^(NSString *code) { [self.client getAccessToken:code success:^(NSDictionary *accessTokenData)

Android LinkedIn mobile SDK error?

一笑奈何 提交于 2019-11-27 06:57:53
问题 I am integrated LinkedIn successfully using newly released Android Mobile SDK and all done well using Android Studio , but when I generating signed apk is showing the below mentioned error. I heard that we have to use debug.keystore file otherwise this error LinkedIn sdk will return same error. I have done that too, but the scenario was while we are generating signed apk in Android Studio it's giving .jks file not . keystore file . Please tell me the step how to generate .keystore file and

How to avoid “HTTP/1.1 999 Request denied” response from LinkedIn?

萝らか妹 提交于 2019-11-27 06:26:59
问题 I'm making request to LinkedIn page and receiving "HTTP/1.1 999 Request denied" response. I use AWS/EC-2 and get this response. On localhost everything works fine. This is sample of my code to get html-code of the page. <?php error_reporting(E_ALL); $url= 'https://www.linkedin.com/pulse/5-essential-strategies-digital-michelle'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HEADER, true); curl_setopt($ch,

999 Error Code on HEAD request to LinkedIn

你离开我真会死。 提交于 2019-11-27 04:13:05
We're using a curl HEAD request in a PHP application to verify the validity of generic links. We check the status code just to make sure that the link the user has entered is valid. Links to all websites have succeeded, except LinkedIn. While it seems to work locally (Mac), when we attempt the request from any of our Ubuntu servers, LinkedIn returns a 999 status code. Not an API request, just a simple curl like we do for every other link. We've tried on a few different machines and tried altering the user agent, but no dice. How do I modify our curl so that working links return a 200? A sample

Any queries to the api.linkedin.com/v2/ return “Not enough permissions to access …”

点点圈 提交于 2019-11-27 04:03:23
I got the Access Token (with scope: r_basicprofile rw_company_admin w_share ) using the Client ID , Client Secret at following URLs: https://www.linkedin.com/oauth/v2/authorization https://www.linkedin.com/oauth/v2/accessToken Make request to the https://api.linkedin.com/v2/me endpoint curl -H "Authorization: Bearer ACCESS_TOKEN" -H "Accept: application/json" -H "Content-Type: application/json" -H "X-Restli-Protocol-Version: 2.0.0" https://api.linkedin.com/v2/me Get response: { "serviceErrorCode": 100, "message": "Not enough permissions to access /me GET ", "status": 403 } Similar erroneous

permission error while making ugc video post on linkedin

最后都变了- 提交于 2019-11-27 03:26:30
问题 I am trying to create video post on linkedin with new ugc endpoint there are two steps to create this type of post 1). Upload video asset on linkedin server (done) 2). make post request to ugc endpoint with request body I have successfully uploaded the video but getting authentication error for ugc post request. error is { "message": "urn:li:developerApplication:<id1> does not have permission to create ugc posts with author: li:member:<id2>", "status": 401 } I am passing the request body as

iOS linkedin authentication

白昼怎懂夜的黑 提交于 2019-11-27 01:22:19
I started developing an app for iOS in Swift. Now I am at the part where I need to create a login system. However we need the LinkedIn information from people. How can I use the OAuth2 API in iOS to achieve this? I already created an app in the LinkedIn developers area, but now I am stuck. I got some advice from someone that I need to use the UIWebView but I have no clue how this works. JAL Integrating LinkedIn Login in a Swift application First, download the LinkedIn iOS SDK . I'll be using the 1.07 stable version for this example. I'll be following the integration guide here . Create a new

Keep url encoded while using URI class

丶灬走出姿态 提交于 2019-11-26 21:34:52
问题 I'm trying to get public profile information from LinkedIn. To achieve this I have to provide http://api.linkedin.com/v1/people/url=public-profile-url, where public-profile-url MUST be URL encoded. The issue is that .NET classes such as HttpClient, WebRequest etc use Uri class which seems to "canonize" the provided URL, so that I can't get the proper formatted request sent. The URI must be: http://api.linkedin.com/v1/people/url=http%3a%2f%2fwww.linkedin.com%2fin%2fiftachragoler but is: http:/