How I can retrieve all user activity from linkedin - api

I am trying to get user details like all posts and shares or user activities from linkedin, when I am trying get this method https://api.linkedin.com/v2/ugcPosts?q=authors&authors=List({encoded personUrn}) I am always getting below message I am using linkedin V2 API
{"serviceErrorCode":100,"message":"Not enough permissions to access: GET-authors /ugcPosts","status":403}
same thing happens for: https://api.linkedin.com/v2/socialActions/{personUrn}
LinkedIn Documentation Here: https://learn.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#retrieve-ugc-posts-by-authors

Related

Get Instagram permission for public_content

wish all of the best for you
do me a favor please?
i wanna analyze the media with specific hashtag on instagram, there are many website do that like Keyhole or iconosquare
as i know with 2 type of API, instagram analytics site do that (instagram graph api facebook and instagram platform api)
but as i search in instagram graph api facebook graph there is no option to analyze hashtag and as i search in instagram platform api i read detail about permission as below :
basic - to read a user’s profile info and media
public_content - to read any public profile info and media on a user’s behalf (applications no longer accepted)
follower_list - to read the list of followers and followed-by users (applications no longer accepted)
comments - to post and delete comments on a user’s behalf (applications no longer accepted)
relationships - to follow and unfollow accounts on a user’s behalf (applications no longer accepted)
likes - to like and unlike media on a user’s behalf (applications no longer accepted)
if we wanna analyze via instagram api, we have to gain public_content permission but instagram write (application no longer accepted)
what shall i do know for that?
Instagram stopped giving permission other than basic_profile , so you won't get permission for release and can use only in sandbox mode.
it's waste of time now to use Instagram api.

obtain photos from facebook developer test user

I'm a newbie at this into my third hour.
I'm trying to retrieve photos from my facebook test user.
Photos have been posted.
user_photos have been granted in the access_token.
I used the api like so:
https://graph.facebook.com/me/photos?access_token=XXXXX
but the api returns an empty json with field 'data'.
if anyone is interested the test account is dave_qdoryet_ricesky#tfbnw.net/davericesky
Is there something I'm missing/did not yet check?

Ebay API: Get All Transactions By Seller

I am trying to use the Ebay API to get completed transactions for a seller(s) that is using a different account from my developer account. I've looked into GetSellerTransactions and GetOrders. Unfortunately, I am not sure if it's possible to specify a User ID different from mine. Could you point me to working example of how to do this?
To get transactions for a user you should be first authorized by that user.
You will need a developer account for that.
This links will guide you
http://developer.ebay.com/DevZone/XML/docs/WebHelp/wwhelp/wwhimpl/common/html/wwhelp.htm?context=eBay_XML_API&file=GettingTokens-Getting_Tokens_for_Applications_with_Multiple_Users.html
http://developer.ebay.com/DevZone/XML/docs/WebHelp/wwhelp/wwhimpl/common/html/wwhelp.htm?context=eBay_XML_API&file=DevAndTestApplications-Testing_Applications.html
Once you get the user token for a user you need to send them along with your developer credentials to make the getOrders API call for that particular user.

Is there any way I can retrieve twitter user's email Id (Objective-c)?

https://dev.twitter.com/docs/faq#6718
If twitter doesn't provide any API, then how does foursquare retrieve them?
Foursquare has provision to list out the user's foursquare-friends who have registered with twitter.
It also provides API which shows friends of users who commonly appear in 'foursquare friend's list' as well as 'twitter followers list' of the user.
In both the above cases comparison can be made only through email.
Please help.
There's no way for you to get an e-mail from Twitter. Except, of course, by asking the person to give it.
What FourSquare does need no access to the e-mail. Matching is based on the Twitter name, not on the e-mail.
In the comments you say
My friend has registered in both Twitter and Foursquare. The only field common in her profile is the email id. No other fields match. She comes in the 2nd list which i have mentioned above.
but then you admit
After she has registered with FourSquare, went to her profile, clicked on friends -> Add Friends -> opted Twitter. She was asked to login to Twitter and thus she did it
This means that now FourSquare have access to her Twitter as well as your. Foursquare knows her Twitter id and your twitter id and can access Twitter (using Twitter API) to see who is following is following who. In other words when you say
The only field common in her profile is the email id. No other fields match.
You are wrong. Once she connected her FourSquare profile with her Twitter, all data that is accessible via Twitter API is in fact (at least potentially) part of her Foursquare profile.
But she needed to explicitly connect the two profiles (which she did when she opted to add friends to her Foursquare profile using Twitter).

Question about twitter api

I want to create a simple Twitter application, but I have a problem. I want to show the user information about his followers, but this requires one API request to get a list of all user IDs following him, and then many additional API requests to get the user information corresponding to the user IDs that were just fetched. Is it possible to get user info for many followers in one request?
Use the Followers method:
http://api.twitter.com/1/statuses/followers.xml (Twitter API Documenation)
It returns detailed information about each follower.