Can I use Google Maps API to create a Facebook Application? [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.
Could I use Google Maps API to create a Facebook Application? If so, what is the most efficient method to go about doing this? If not Google Maps, how about Bing Maps API or Openstreetmaps?

On a technical level you should be able to use the javascript API. You can read up on it at http://code.google.com/apis/maps/documentation/javascript/tutorial.html
However, check the API licensing carefully. If you intend to charge for your app, or depending on what you plan to track, you may have to purchase the business license which is $10k (no exceptions, whether profitable or not)

I did this long time back. I created an application which was embedded inside facebook and it used google maps API.
And I guess these things will always work because facebook and google provide service through set of APIs. And they are independent of each other

Related

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.

Twitter integration in iphone using OAuth [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.
In my iPhone application i have one option for import twitter followers in my friend list.(friend list which is display in my application)as per my knowledge i need to follow bellow step.
1. Twitter OAuth integration in my application and get access_token.
2.find API for get followers list from twitter developer site.
If anyone have good approach than kindly guide me.
Thanks in advance.
You can use (on iOS 5 and above) the Accounts + Twitter frameworks to make your access to Twitter a lot easier. This way, you don't need to manually deal with the OAuth protocol. You can also take advantage of the fact that a user may have their Twitter account already set up at the OS level, meaning you don't need them to log in again. See links below on how to use these.
Your second question regarding followers list, you can get a list of followers using the following API Resource: https://dev.twitter.com/docs/api/1.1/get/followers/list
Using that API along with the Twitter framework should get the results you are after/
Sources
Accounts framework reference: http://developer.apple.com/library/ios/#documentation/Accounts/Reference/AccountsFrameworkRef/_index.html#//apple_ref/doc/uid/TP40011024
Twitter framework reference:
http://developer.apple.com/library/ios/#documentation/Twitter/Reference/TwitterFrameworkReference/_index.html#//apple_ref/doc/uid/TP40011014
Sample code on how to use these frameworks:
http://developer.apple.com/library/ios/#samplecode/Tweeting/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011191

Store locator API for 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 10 years ago.
I was browsing through some applications for the iPhone with a store locator in them allowing users to find stores based on a zip code or current location.
I was wondering if there is any way to find an XML/JSON file which lists all the address for a particular store (Walmart, Target, etc...) which I could extract using the NSXML parser and then corelate the address to the MapView. Do I have to make use of Google Maps API?
You could take a look at the Foursquare Search API: https://developer.foursquare.com/docs/venues/search
Otherwise it might be worth making a manually defined list of stores that the user can chose from and manually adding an XML/JSON store list to your bundle.
Actually There Are so many API Available Today Like FourSquare Google Places Search API etc.
I think You should Use Google Places Search API for That.It Gives More detailed Data Comparatively To Others.They Have Great documentation for The Same.
Here you should go For The Google Places Search API.
Go For The FourSquare API.

authentication facebook 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 9 years ago.
I have developed a facebook application, where users upload video and audio. Now i want that without authentication no user will be able to use the application.
Why i want this is because i need the user profile picture, the current loggedin user profile picture. So that i can welcome him after authentication.
After searching for hours, i was unable to get answer for myself, so posting it here.
I have read the complete documentation
https://developers.facebook.com/docs/authentication/pagetab/
but unable to understand. It would be great if anyone can help me.
If you are looking for authentification for canvas application then read this documentation.
If you wanna use server-side authentification then download official php SDK from github. Repository contains example application.
I've recommend this way of authentification because it is the easiest. Documentation for SDK.
And exists client-side way of autentification. Documentation for JS SDK and example application.

how can i create a google talk like system? [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 want to create a system that allow my site users talk talk to each other. simple like google talk.
i tried google talk but they just allow people to talk to their google firends and not to their friends on my website.
so what am i supposed to do. where should i start and what language do i need to use?
or in another way, how can i stream audio directly from the users microphone to the other user and at the same time stream the other users voice to the one in this side?
i looked in google and i couldnt found anything that can help me.
This plugin for ejabberd could be what you're looking for: a multi-user web interface to a Jabber chatroom.
Note that you'd need to set up your own Jabber server for this, but it's not extremely hard. (it's indeed "simple like google talk", except that Google Talk isn't too simple; note also that Google Talk is actually built on Jabber)