Searching For Users [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 11 years ago.
I'm currently investigating a way to develop a website that will allow me to search for users of facebook and the outcome is to display some simple information to the user of my website about this person. so firstly a search will will display a list of users and then when the user clicks the name the basic information will be displayed.
This is part of a University application i am looking into creating for a final year project. i'm not asking for answers i'm just wondering is it possible to even use the api to integrate with a aspx.net project and do the searches i have explained.
any pointers would help greatly. This is my first ever post on this form and i hope to be an active user of the site.
Thanks Everyone
Chris

Start here:
https://developers.facebook.com/docs/reference/api/
Look at the search section of this document.

Related

support URL while uploading the app [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.
What should be the support URL while uploading the app on itunes? It is giving the warninig to fill the support url but I don't have the any idea about it. Can anyone help?
Thanks
The support URL should point to a website that you made to give support for your app. You can just make a quick website that is essentially a placeholder for your future support site but they want something or maybe just use a free blog where you give support information for your app. It doesn't have to be great for them to accept it.

getting top post from Facebook for iPhone [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 have a very different requirement in my app.Using the app i need to get top 25 most liked and most commented posts from facebook.First let me ask the experts does it seems to be possible till today?
As far as i thought and researched on this I am able to get the likes and comments for a page(of an organization or celebrity using graph api).
My approach was to make an Admin panel and subscribe most of the famous people,organization,product etc,but this won't help.
Not possible to do I'm afraid. From what you are asking, you want to find the most popular posts across all of facebook? This is most likely going to come from Pages as these are public and can have millions of people liking / commenting on posts.
Either way, this would be a complex and data-intensive task. You would have to scrape posts from all the top Facebook pages and see which ones would have the most links / comments. A lot of work for little reward.

Facebook Articles Application [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.
Recently i've noticed many news sites creating new application on facebook for sharing articles.
something like mini-site of the website inside facebook platform.
I.e Washington post application.
I've tried to find the how-to-do on facebook developers center but couldn't.
You’re talking about Open Graph actions here. Apps can define objects, and actions that can be performed on them (although fo reading an article you now have to use the build-in types), and then publish these actions on a user’s behalf.
Please familiarize yourself with the concept, start reading here: https://developers.facebook.com/docs/opengraph/

Complete email client is possible or not in iPhone? [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 have to make an application of email client. is it possible to make an application that can manage different email addresses. In application we have to provide inbox for different id. I don't know how I'll connect to all servers. and how it will work? can anybody guide me?
This is really new for me thats why please don't mind if my question is silly
There used to be an app, remail, then open sourced by google: http://code.google.com/p/remail-iphone/
Also on the OneMail app website you'll find a list with the frameworks they're using: http://codev.co.uk/products/onemail/notice
I guess that it is possible, since it is an "stand alone" app and not an improvement to the native app.

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