oauth

Get Following people on twitter with OAuth method? Objective C??

I create an object: SA_OAuthTwitterEngine *_engine = [[SA_OAuthTwitterEngine alloc] initOAuthWithDelegate:self]; then set the consumerKey and the consumerSecret... I can get the followers without problems by calling: [_engine getFollowersIncludingCurrentStatus:0]; Everything fine until now: I have to get the people that the user f...

How to automatically authenticate and query Flickr

I want to get a listing of my photos from Flickr's API but all of the APIs out there seem to have the same basic behavior: they forward you to a login prompt. My application needs to automatically authenticate using Flickr OAuth so that the user doesn't have to know the login credentials. ...

Blank popup with FB connect

I've implemented the facebook connect using Javascript SDK. The authentication works fine when the user I'm trying to authenticate is not logged into facebook. But when he's already logged into facebook the login popup never closes. The url of the popup starts with "http://static.ak.fbcdn.net/connect/xd_proxy.php#cb=....." This happens ...

What should I do to verify an OAuth signature in PHP with PECL OAuthProvider?

I'm trying to verify an OAuth signature in PHP with PECL OAuthProvider. But almost its functions is not documented. ex) http://www.php.net/manual/en/oauthprovider.setparam.php What should I do? Is there unofficial document or sample code for PECL OAuthProvider? ...

Signpost OAuth on Android: how to re-create the Consumer between two succesive runs?

I'm succesfully using Signpost to authorize calls to protected resources in a Google account via OAuth. However it seems a bit weird that the user has to go each and every time through Google and grant access. Is there a way of serializing the Consumer and recreating it so that re-authorization is not needed? I've tried keeping the toke...

Ruby OAuth Nightmare: Using Contacts API

Hi there, I've been spending the last few days banging my head against the wall on supporting the ability to add a contact to the Google Contacts API in my Rails 3 application. Despite many false starts, I've finally made some progress by employing the Ruby OAuth gem, and following the tutorial here: http://everburning.com/news/google-an...

Why can't I update our Twitter status?

Hi everyone, I've spent the last three hours trying to get a simple Twitter status update to work using Zend_Service_Twitter and Zend_Oauth_Token_Access. Infuriatingly, I keep getting the following response: object(Zend_Rest_Client_Result)#34 (2) { ["_sxml:protected"]=> object(SimpleXMLElement)#39 (2) { ["request"]=> string...

Problem with Twitter app using python and django

Hi , I was creating a twitter application with Django. I used the twitter lib from http://github.com/henriklied/django-twitter-oauth for OAuth , as specified in the twitter example pages . But I am not too sure how to redirect user to my application home page once the authentication with twitter is over . The code for oauth_reque...

Online data mining without client side oauth

I have a little app that mines data on social networks and returns interesting results (e.g. the latest conversations around a certain topic). However, the front end requires that the users connects with the various services first via oauth, before these services' APIs can be scanned. I would like this process to be automated on the ser...

twitter api issue

I'm integrating "Sign in with twitter account" function at my site. So, I'm sending request to https ://twitter.com/oauth/request_token, getting token, making redirect to https ://twitter.com/oauth/authenticate?oauth_token=%oauth_token% Then I recieving call back with oauth_token and oauth_verifier This goes fine. But than I need to ...

Which is the most recommended Python Twitter library for programmatically updating my own Twitter stream?

After Twitter discontinuing the Basic Auth, my program which updates my own Twitter stream (not others' Twitter streams.) has broken. I understand that OAuth is the way to go. I have set up a Twitter App for the same and have acquired the consumer tokens. Now I don't want to implement the OAuth for Twitter all by myself if someone has do...

Twitter Authentication Questions

I have two questions (does that violate etiquette?) surrounding Twitter authentication. The first question is this. I'd like to store the access token that I receive but it is a dictionary object. Do I store the whole dictionary object or just some of the pertinent parts. Secondly I'd like to know how to log the user out. I found this ...

Zend Framework Twitter OAuth + Token

Hi I just finished coding my OAuth w/ zend framework. I retrieve my Token. The query string returned has user id,username,secret,token I try the following $twitter = new Zend_Service_Twitter(array( 'username' => $auth['username'], 'accessToken' => $auth['token'] )); $rsp = $twitter->status->update('My Tweet'); But I cant successfully...

How to upload photos to Plixi (Tweetphoto) using Oauth?

Hi all, I am creating an iphone application in which I have to upload photos using different services. I am successful in uploading photos with Twitpic & YFrog but not able to do with Plixi. I am using Oauth ,as Twitter is not allowing Basic authentication. If anyone has tried with Plixi ,please help me out!! I have googled a lot but...

I need to know how to automatically authenticate in Flickr

Everything I have tried requires the end user to sign in to yahoo...this won't work because the end user doesn't know the password or the username. This should be automated otherwise flickr wont work ...

Is the Twitter client for Android using OAuth ?

Since basic auth has been deprecated, is the official android twitter app using OAuth? It still asks for my userid & password & I'm wondering how they are retrieving the oauth token ? ...

Validating signed request: signature_invalid

I'm trying to validate an OpenSocial 0.7 signed request, using the sample Java code on that page. I think it should work this way, but I still get a signature_invalid error. Main validation code: // NOTE: req = HttpServletRequest // check for hyves if (!"hyves.nl".equals(req.getParameter("oauth_consumer_key"))) { throw new Runtim...

Implementing access with oAuth or other

I'm trying to think of a way to open a website and part of its database to other third party websites, similar to how Twitter lets webapps connect to its database to retrieve data and possibly store data. My initial research led me to oAuth (or is it openID?). What I need to do is let the third party websites login to a user's accoun...

When do I need to add oAuth?

I'm trying to understand the use cases for which implementing oAuth as a service provider is the way to go. It seems that implementing an oAuth service is a lot of work, so I don't want to go through the trouble just to discover I was barking up the wrong tree. Any examples of such use cases to help me wrap my head around when to use or ...

OAuth Simple Service Provider

I am struggling trying to pick apart the OAuth Service Provider example which is included in DotNetOpenAuth. I searched SO and found a few similar/related posts, but nothing really useful. Is there any open-source project or really simple/primitive example of an ASP.NET MVC 2 OAuth Service Provider? All I want to use OAuth for is auth...