Connecting to the unofficial Snapchat API - snapchat

I have looked for some of the unofficial Snapchat APIs (since there's no official one yet) and tried to use them, but I got an error every time (mostly it's 404 Page not found).
Does anybody have/work with a valid Sanpchat API?
Thanks

Here you can find how to get SnapChatAPI
https://www.npmjs.com/package/snapchat

Related

Google Places API autocomplete showing "Oops! Something went wrong."

I'm having a difficult time to use Google Places API autocomplete with a API key. In my production site, we are using it without a key, works perfectly until traffic reach the request limit. After some research, found out I will get higher request limit using a API key. However, after I added the key (even no restrictions), the address field in my form is disabled and showing "Oops! Something went wrong.".
Here is Google API URL I am using
https://maps.googleapis.com/maps/api/js?key=[my_api_key]&libraries=places&callback=initAutocomplete
I was thinking it must be something wrong with my code. Then I use Google's official autocomplete sample code with my API key and no further modification, same result. Using it without a key always work.
I confused. I don't believe the code is wrong. Anyone can give me a hint?
Found the problem. I enabled "Google Places API Web Service" in Google Developer. However, this is not enough. I have to enable "Google Maps JavaScript API" as well.
Thanks the reference to Google Maps API error: Google Maps API error: ApiNotActivatedMapError
In your Google API Manager -> Credentials, did you setup
You can also check your console, Google will tell you why "something went wrong".

connect mule and facebook tutorial

anybody knows a good tutorial on connect Facebook and mule
i just started learning Mule today and i found a punch of very good tutorial on how to integrate mule with twitter and it worked fine, but i couldn't find anything related to Facebook connection.
when i search the youtubefor tutorial almost everything is there (dropbox, salesforce, Linkedin ....)
am i missing something?
The Twitter and Facebook connector are extremely similar (they both require an OAuth dance, not the same version but similar), so if you are able to use the Twitter one, you should have no problem using the Facebook one.
To help you going further, here are two good resources:
A tutorial: https://github.com/mulesoft/facebook-connector/blob/master/doc/sample.md
The connector's doc: http://mulesoft.github.io/facebook-connector/mule/facebook-config-with-oauth.html

Feed limit request reached - Facebook Android SDK

I know it's kind of repeated but I've looked here and others forums trying to find a reason to this error.
I've found the cause but I really would like to see the explanation in Facebook's API, and other informations for my app about the limits and the limit of time necessary to 'back to normal', but I couldn't find it anywhere.
Do you know where can I find these informations directly on Facebook?
Thanks for your help.

Photobucket IOS integration

could anyone assist in authenticating to photobucket and uploading an image from and iPhone app? I am currently configured with many networks but I can't really find good documentation for the photobucket process. I guess the process is only authenticate and upload using customer key then username and password of the user?
Any help here would be amazing! Thanks in advance!
Jim
Jim, the Photobucket (PB) process for authenticating is modified OAUTH. If you start looking at OAUTH examples you will find that you can authenticate on PB by simply converting a sample over to PB. e.g.: There's an OAuth starter kit set up for LinkedIN by Lee WHitney on Github courtesy of Kirsten Jones. Register an app with PB, get your keys and plug in the keys & correct PB URLs and you will be working. The URLS you need are:-
requestTokenURLString = #"http://api.photobucket.com/login/request";
accessTokenURLString = #"http://api.photobucket.com/login/access";
userLoginURLString = #"http://photobucket.com/apilogin/login";
This will get you logged in but there's a lot more to come. PB have a code page and there is an Objective-C library including a modified OAUTH but it's missing docs so you need to work it out by studying the code. Bitbucket Photobucket code for objective-c
The issue I have is to do with their usage of sub domains and trying to get OAUTH to work with that.
UPDATE: Solved: I have at last worked out how to get a part of the provided API working in my own Xcode project. Basically I added the special Oauth files which enable the requests to be set up correctly to get round the subdomain stuff.
eg: OAuthASIHTTPRequest etc
I'm now getting full album info.
Official documentation for Photobucket API is available at: http://pic.pbsrc.com/dev_help/WebHelpPublic/PhotobucketPublicHelp.htm . You can find examples for login and media uploading.
Client libraries for Photobucket API are at: https://bitbucket.org/photobucket/api/wiki/Client_Libraries . There is a Objective-C one, like SundialSoft mentioned in answer.

Is there a decent PHP Facebook Connect example anywhere online?

I have a very simple php site that I'm wanting to add facebook connect to. I have searched to and fro to find out how to do this. Even the developer docs at facebook are apparently wrong. I see many seasoned programmers replying that the docs are outdated and some of the methods won't work.. how one should create a new solution for this part, etc...
I know that Facebook changed a lot about the way facebook connect just before 2011. Isn't there someone out there who could provide a working example on how it's done? I will give my left leg to someone that could provide an updated and working tutorial.
Thanks.
The PHP Example shows you exactly how to do this. Short, redirect to $facebook->getLoginUrl() and then call $facebook->getUser().