linkedin

Error on sharing the content to LinkedIn

China☆狼群 提交于 2019-12-06 06:43:21
I have successfully integrated LinkedIn native application in my application using LinkedIn mobile SDK . I am able to login successfully with my application but the problem is with sharing the content. While I successfully logged in , want to share my content to Linked in but it always give me error response { "errorCode": 0, "message": "Access to posting shares denied", "requestId": "MBB3L0G1KZ", "status": 403, "timestamp": 1452172936679 } though i have added all permission to LinkedIn I have made share function. void shareImageOnLinkedIn() { String shareJsonText = "{ \n" + " \"comment\":\""

Incorrect sorting on retrieve shares via api.linkedin.com/v2/shares

和自甴很熟 提交于 2019-12-06 06:06:46
According to the documentation , shares are ordered by creation time with the most recent share being the first. But when I request shares, they received with sorting by last modified time . Example: https://www.linkedin.com/company/cadencepcb/ Request: curl -H "Authorization: Bearer TOKEN" -H "Accept: application/json" "https://api.linkedin.com/v2/shares?owners=urn:li:organization:28610896&q=owners&sharesPerOwner=10&start=0" Response: receive list of shares with this sequence: Created: 05/27/2019 8:00pm Modified: 05/27/2019 8:00pm Created: 06/19/2018 1:00pm Modified: 05/27/2019 3:58pm Created

LinkedIn Integration r_network and w_messages request not working together in iOS sdk

感情迁移 提交于 2019-12-06 06:03:20
I have done LinkedIn integration and I have to send message to particular users.For that first I am fetching connections and then sending messages. (void)requestTokenFromProvider { OAMutableURLRequest *request = [[[OAMutableURLRequest alloc] initWithURL:requestTokenURL consumer:self.consumer token:nil callback:linkedInCallbackURL signatureProvider:nil] autorelease]; [request setHTTPMethod:@"POST"]; OARequestParameter *nameParam = [[OARequestParameter alloc] initWithName:@"scope" value:@"r_basicprofile+w_messages+r_network"]; NSArray *params = [NSArray arrayWithObjects:nameParam, nil]; [request

iOS Sharing Image to LinkedIn using UIActivityViewController

微笑、不失礼 提交于 2019-12-06 04:11:46
问题 I'm trying to share image to all possible apps installed in my device. But unfortunately, I'm not able to post image successfully to LinkedIn (already installed and logged in as verified user). LinkedIn is being displayed in list of share actions in UIActivityViewController, when I tap on it, It displays a dialogue with image, which I have added as activity item, but it is not being posted to LinkedIn. Tested successfully for Google+, FB and Twitter. If I share url, then it gets posted to

access token from linkedin for android application

纵然是瞬间 提交于 2019-12-06 04:01:50
问题 First of all. Is it possible to add linkedin with android application like facebook,twitter ? I have read many of blogs but can't able to implement linkedin in my application. I have reached to the user authorization process for application where user enter his user name and password. but when he enters a 5 digits number come on screen and screen told got to the application home screen. Then fill it and press enter. But question is there how can i move back from browser to my app and where

HTTP Error 999: Request denied

你。 提交于 2019-12-06 02:16:54
问题 I am trying to scrape some web pages from LinkedIn using BeautifulSoup and I keep getting error "HTTP Error 999: Request denied". Is there a way around to avoid this error. If you look at my code, I have tried Mechanize and URLLIB2 and both are giving me the same error. from __future__ import unicode_literals from bs4 import BeautifulSoup import urllib2 import csv import os import re import requests import pandas as pd import urlparse import urllib import urllib2 from BeautifulSoup import

linkedin connect API gives error 401 - iphone

久未见 提交于 2019-12-06 01:11:26
hi i am sending connect invitation by email using linkedin iphone api Request xml: <?xml version='1.0' encoding='UTF-8'?> <mailbox-item> <recipients> <recipient> <person path="/people/email=%@"> <first-name>%@</first-name> <last-name>%@</last-name> </person> </recipient> </recipients> <subject>Invitation to Connect</subject> <body>Please join my professional network on LinkedIn.</body> <item-content> <invitation-request> <connect-type>friend</connect-type> </invitation-request> </item-content> </mailbox-item> where %@ indicates dynamic value. Content Type: text/xml Request Method: POST

Linkedin API access token generation error

空扰寡人 提交于 2019-12-05 22:45:56
问题 i am trying to generate access token to collect linkedin data. I followed the instructions provided in the linkedin API documentaion. I created an app in developers page and got the following: Application Details • Company: Fresher • Application Name: xxxxxxxxxx • API Key: 75pcum6zb2cael • Secret Key: xxxxxxxxxxxxxxxx • OAuth User Token: xxxx-xxxx-xxxx-xxxx-xxxxxxxxxx • OAuth User Secret: xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx Using the API Key i generated the authorization_code with the URL: https

New LinkedIn permissions: accessing past positions and educations using rails LinkedIn gem

一笑奈何 提交于 2019-12-05 22:05:23
Linkedin recently updated their API, making it less restrictive in terms of what you can access in some cases but generally more explicit in terms of how you must access it. In particular, you must request specifically what data you want in the omniauth builder: Rails.application.config.middleware.use OmniAuth::Builder do provider :linkedin, "consumer_key", "consumer_secret", :scope => 'r_fullprofile r_emailaddress r_network', :fields => ["id", "email-address", "first-name", "last-name", "headline", "industry", "picture-url", "public-profile-url", "location", "connections"] end See: https:/

Linkedin API Pulse Share

我的梦境 提交于 2019-12-05 21:25:11
I am trying to integrate my blog to Linkedin Pulse by connecting to my linkedin app. I found that posting to API /v1/people/~/shares shares my update but I can't figure out how to post it on Pulse - long post. Is it even possible? Cheers! Posting on Pulse is not available using LinkedIn's public API. And as far as I know, they are not offering this to their partners either. Managed to fix it with Curl. The tool is logging in to your linked in (user and password). Gathers the token and post to LinkedIn pulse, additional request is used to upload image and tags using post ID at that time. Cheers