Is there a way to get your friends events with Graph API - facebook-graph-api

Can this be accomplished and what permissions do I need for this?

Ok, I found it, I need a friends_events permission and https://graph.facebook.com/{user_id}/events?access_token={acces_token} link

Related

Flask: Eve + ACL

I've implemented simple REST API based on Flask Eve framework.
Now I want to add some custom ACL based on user's roles.
I've investigated this question a little and found interesting solution called Flask-ACL:
https://mikeboers.github.io/Flask-ACL
But there are a few questions I want you to ask:
Do somebody know any documentation how to use Flask-ACL + Eve frameworks, because it's not clear enough for me..
What is the best way to map list of roles to list of permissions?
Can't help with Flask-ACL (I don't know it) but, have you looked into Eve's own Role Based Access Control yet? It basically allows you total control on what an authenticated user can do.

Access facebook friends public posts

I want to access my facebook friends public posts for some sentiment analysis stuff. Can anyone help in knowing how it can be done using GraphAPI ?
You can´t access data of friends anymore. All friend permissions are gone:
All friends_* permissions have been removed.
Source: https://developers.facebook.com/docs/apps/changelog
Additionally to the removal of the friends_* permissions, you can no longer get the whole friend list anymore, but only those who are also using your app.
So, what you want to achieve is unfortunately pretty much impossible.

How to get interested in from facebook via graph api?

I want to grab facebook user's interested in . I was testing with my own account, I tried many perms, but I get nothing, and in fact, I set my interested in as women, and public.
does anyone know how to do it? thanks.
Ensure you grant user_relationship_details permission:
You can always play around with debugger at https://developers.facebook.com/tools/explorer/456672354407764/?method=GET&path=me%3Ffields%3Dinterested_in to find out the approriate permission scope.

is it possible to use Facebook Graph API to get just my own wall posts

I just want to know if it's possible to do the following:
To display some wall posts from my own facebook account in a php web page, without going through the granting-permission in the user interface level? Because from what I know, you need an access token to use the API, and to get an access token, you need to go through the granting-permission UI. So I am feeling impossible here.
I got my app ID and secret code ready, I just want to know for sure if what I want to implement is even possible to begin with.
Actually, you could change your privacy permissions so that your wall is completely public. The API is then able to access public information without being granted user authorization.
I was also searching the same, as I want to implement it in my project. Now I've got the answer of this. Yes, you can get posts as well as comments from your wall. If you want more details about same, comment below mentioning my name. :)

Programmatically add a WSO2 API manager store user (subscriber)

Is it possible to programmatically add a store user?
I found the following API manager service urls;
https://localhost:8243/services/RemoteUserStoreManagerService?wsdl
https://localhost:8243/services/APIAuthenticationService?wsdl
https://localhost:8243/services/APIKeyMgtSubscriberService?wsdl
https://localhost:8243/services/RestApiAdmin?wsdl
but I get a white screen. The following directories are also empty:
/opt/wso2am-1.3.1/repository/deployment/server/jaggeryapps/store/apis/xml
/opt/wso2am-1.3.1/repository/deployment/server/jaggeryapps/store/apis/rest
/opt/wso2am-1.3.1/repository/deployment/server/jaggeryapps/store/apis/json
Seems like it is not implemented yet.
I'll appreciate any update on this.
Please see the below comment which is an answer given for a similar question like yours.
https://wso2.org/jira/browse/APIMANAGER-1311?focusedCommentId=66003&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_66003
regards