Facebook Application User Count [closed] - facebook

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Do any of the Facebook APIs give me the ability to get the total number of users that have allowed my application? I see the ability to get the users that accessed it in the last day and the last month but not the current total count. I have looked through a lot of the documentation (which is daunting to say the least) and didnt see anything.

You can get it via Graph API Insights, though you have to look at the FQL Insights information to get a list of the available metrics.
https://graph.facebook.com/YOUR_APP_ID/insights/application_installed_users?access_token=TOKEN
The access_token you use needs to be an app access token, or a user access token for an admin of your app.

Related

How do I record users logged in and not logged in on a website using Perl? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
How do you keep statistics of users logged into a website, and users not logged into a website all in the Perl language?
You write a database, decide how long the maximum amount of time they can access the website without re-authenticating, and then query the database for everyone that matches that criteria.
Web pages aren't that easy to just pick a number and go with it. Logging doesn't help. You need a user database for your system, and within it you need to track the last access times and count the people that haven't timed out. Otherwise, web based logins basically never end as there is no end-criteria to their browser that you have access too (even with session cookies, they can leave their browser running for years).

Get users' application list in Facebook [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to develop a facebook app such that when the user install my app. I can
Get the user's application list
Find his friend who use the same apps as him(categorized by apps)
Track whether the user receives recommendation for the app
Track what information each app needs from users.
I have little experience in facebook app developing. I want to know is it technical possible to achieve the above four aims using facebook api?
Nope, the feature to retrieve the list of applications the User has authorized is not exposed to any of the present Facebook's APIs.

FB insights stream publish users [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'd like to get a list of users who have shared my app on to their streams. Facebook insights gives me the number of users who have published the story but I'd like to get their usernames as well. Is this possible?
Thanks in advance!
Sorry, this is simply not possible! Facebook doesn't give access to this information unless you explicitly get permission from the user to examine their feed with the read_stream permission. Even if you did, you would have to scan each individual users feed to see if they have the shared post.
As I see it, the insights service is more statistical information that user information.
You can however see by manually clicking on the number of shares next to the post on Facebook. There is a difference between the type of data Facebook shows users and the data that they make available to applications via the API. This is to make sure that no applications take part in data mining and simply collecting as much data as they can on every user.

Get followers and following from twitter account in iOS [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Everybody..
How can I get all followers and following from a user's logged in twitter account in iOS?
Is there any api for that?
please help me..
Yes there is an API for that. see this.
I recommend using the JSON API as it is very easy to parse with the objective-c framework. Look at the fourth section on the page I linked to, under 'Friends and Followers' and you'll see there are requests you can make to access followers and following.
For example, this is how you get someone's followers:
http://api.twitter.com/1/followers/ids.json?id=myuser
This returns a JSON array of user IDs which you can use in conjunction with other APIs to get their user info.
Hope this helps you getting started

Facebook - Allow User to specify username [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am creating a site that I want to use Facebook login solely for convenience. People coming to my site will want to be anonymous and not use their real names.
I used Facebook connect on a site in the last 6 months that asked me to input a username after I filled in my Facebook login credentials (It was still in the Facebook connect box).
I have not seen it since and am trying to explain it to a developer. Does anybody know about this, or how to achieve it?
Sounds like the webapp in question authenticated against FB Connect, and then used some piece of information returned (uid, probably) to create an entry in the site's user database, which also allowed for a username to be used on the site, rather than just using the person's name as supplied via FB.