How I can get access to r_member_social? - linkedin-api

What are the steps to obtain access to it for my app?
I have tried to fetch the posts of my app users but got an error.

Per the documentation, access is currently closed.

Related

how to fetch data from twitter api using flutter without using any plugin

Is it possible to fetch data from Twitter or Facebook...etc without using any plugins?
For example I want to:
Authenticating the user in order to take permission to fetch his own data from the API.
Getting user basic information (Username, number of followers and following, etc..).
I tried to search for a tutorial related to this issue but all I found using firebase_auth and flutter_twitter_login so, is it possible to do this without using the previous plugin?
I hope someone could let me know some docs for this issues :)..

Facebook Page Creation API throttle limit

I am building an application for clients to be able to create Facebook Page in their account using my own Admin Access Token.
I have Standard Access approved for my Facebook application already.
I tried to create a few test pages using FB Graph Explorer and I succeeded.
I ran into a problem when I tried to create a page using Code in Classic ASP, it says Have reached page creation api throttle limit
FR- https://www.screencast.com/t/hTd4RDozov
I tried to search into the Facebook documentation to find out that when I can get out of this error, but couldn't find any response.
Are there anyone person who has got this error before? Or can someone tell when I can get rid out of this error?
Many thanks
Currently experiencing the same behavior. Talking to Facebook support they say the default limit for page creation is 2 pages per month. This number might be negotiable depending on your usecase.

Facebook Marketing API - no app?

I want to pull ad data (campaigns, ad sets, & metrics like clicks/impressions/ctr) from Facebook using their API and put it into a database. Facebook's documentation says I need to create an app on their site in order to access the API, but that doesn't seem right. I'm not trying to create an app for my fb page, just want to extract data.
My first choice was to use an ODBC driver from
CData
, which does allowed me to successfully pull data from AdAccounts but threw an error when trying to get AdSets or AdStatistics:
OAuthException Code 10: You do not have sufficient permissions to perform this action.
I made sure to add in a target='act_{myAdAccountId}' parameter to the query, as per their documentation, but it didn't help. I figured this meant I didn't configure the driver properly, so maybe I'd have better luck just coding up a solution in python or php.
Next, I tried to run similar API calls using the Graph API Explorer and got the same error message. I created an access token that had all the extended permissions and then made a request to
GET /v2.4/act_{myAdAccountId}/adcampaigns.
This gave me the exact same OAuthException Code 10 error that I was getting through the ODBC Driver.
Can someone confirm whether it's possible to pull data from the API without building an app? If so, what permissions do I need to enable for my account? I'm already an Ad Account Admin in the "Ads Manager", and couldn't find anywhere else to set permissions.
Thanks!
Apps have no direct relation to Pages. You need to create an App for any API access. I did not use the Ads API yet, but i assume you need to use the ads_management permission with your App.
How to create Apps and authorize with the required permissions is explained in the docs: https://developers.facebook.com/docs
Since you asked about Login Review, all the information you need about that can be found in the docs too: https://developers.facebook.com/docs/facebook-login/review
I understand this is an old post, but in case if anyone was looking at a similar situation, I was able to call the Facebook Marketing API without building an app.
I posted a similar answer on another more recent question (Do I need a publicly accessible webserver in order to user Facebook's marketing API?), and was curious if this situation puzzled anyone else, which led me to here.
I wrote my API calls using Python 2.7 on Juypter notebook, and I just followed Facebook's Marketing API documentation and examples, modifying with my access tokens and account information.

Use LinkedIn API with Xcode

I'm using the API from the following site in order to connect to LinkedIn:
http://www.whitneyland.com/2011/03/iphone-oauth/comments/page/2/
But i'm trying to find a guide to learn how to get the list of contacts using xcode but couldn't find anything...
Can anyone direct me to anything?
Thanks,
See the Connections API from LinkedIn's Docs.
The Connections API returns a list of 1st degree connections for a user who has granted access to his/her account. You can control the fields you want to have returned and the number of connections returned for each call.

Is it possible to grab info about ads shown to user?

Is it possible to grab ads which are shown to user? Not the ones he created. Using Ads API?
For example if I know the Creative ID (e.g. 6003457682739) can I get info about it?
I've tried to use this code:
https://graph.facebook.com/6003457682739?access_token=
From help: https://developers.facebook.com/docs/reference/ads-api/adcreative/ Part "Retrieving data for specific creatives"
But no luck, I guess because Facebook allows to grab ads managed by you only?
"But no luck, I guess because Facebook allows to grab ads managed by you only?"
This guess is incorrect. You can get data managed by others. You will need to get the access_token from the manager of the ad to get their data.