[twitter-dev] 401 errors with xAuth

2010-08-25 Thread Felix
h_password=PASSWORD&x_auth_username=fixone And the response is , of course, "401 Unauthorized" I would need some help figuring out what's wrong. KR Felix -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.co

[twitter-dev] Re: 401 errors with xAuth

2010-08-25 Thread Felix
Hi Tom, Indeed, you were right, there was a line which I forgot to uncomment, which did the encoding, now I got a 200 response Thanks, Felix On Aug 25, 11:50 pm, Tom van der Woerdt wrote: > Hi Felix, > > You are not urlencoding your base string properly, specifically the nvp part

[twitter-dev] Re: Need help with MGTwitterEngine & OAuth/xAuth

2010-08-31 Thread Felix
Hi, 1. Replace twitterEngine = [[MGTwitterEngine twitterEngineWithDelegate:self]; with twitterEngine = [[[MGTwitterEngine twitterEngineWithDelegate:self] retain]; in init of the TestControllers. 2. build the 32-bit version. 64-bit seems not to be supported. best regards, Felix. -- Twitter

[twitter-dev] @anywhere in Safari4/Mac - wont work

2010-05-12 Thread Felix Kunsmann
pt attempt to access frame with URL about:blank from frame with URL https://api.twitter.com/xd_receiver.html. Domains, protocols and ports must match. Gruß, Felix Kunsmann - -- Blog: <http://felix-kunsmann.de/> Galerie: <http://galerie.kunsmann.eu/>

Re: [twitter-dev] Fetching @mentions not longer working

2010-05-20 Thread Felix Kunsmann
Am 21.05.2010 um 00:34.43 schrieb Guillermo: > $feeds = $twitter->OAuthRequest("http://api.twitter.com/1/statuses/ > mention.json", 'GET', array("count"=>25)); Please note its 'mentions', not 'mention' :) <http://dev.twitter.

Re: [twitter-dev] @anywhere in Safari4/Mac - wont work

2010-05-23 Thread Felix Kunsmann
com/server/staging/xd_receiver.js"</a>;; } document.write('<script src="' + url + '"><\/script>'); I don't think that http://localhost:/ will work, since there is no HTTPd running on that port. Gruß, Felix Kunsmann - -- Blog: <http://felix-kunsmann.de/> Galerie: <http://galerie.kunsmann.eu/>

Re: [twitter-dev] link wrapping on the API

2010-06-09 Thread Felix Kunsmann
ive for ALL links posted on Twitter? Gruß, Felix Kunsmann - -- Blog: <http://felix-kunsmann.de/> Galerie: <http://galerie.kunsmann.eu/>

Re: [twitter-dev] If 30 June oAuth Ends ...

2010-06-14 Thread Felix Kunsmann
Am 14.06.2010 um 13:58 schrieb ehm mhe: > If 30 June oAuth Ends will be after 30 June works this php script? > > http://morethanseven.net/2007/01/20/posting-to-twitter-using-php.html This Script is using Basic Auth, so it will not work after June 30. Gruß, Felix Kunsmann - -- Bl

Re: [twitter-dev] Tweet Button Encoded URL but PHP entry array permalink

2010-08-17 Thread Felix Kunsmann
ttp://de3.php.net/manual/en/function.rawurlencode.php Simply use it when echo'ing your Buttons Code Gruß, Felix Kunsmann - -- Blog: <http://felix-kunsmann.de/> Galerie: <http://galerie.kunsmann.eu/>

[twitter-dev] Re: Support for oauth_bridge_code via this endpoint is deprecated

2011-06-09 Thread Felix Oldenburg
Hi, I'm facing the same problem until today. On 9 Jun., 02:53, bisanthe wrote: > Hello, > When I run the following code > >                         OAuthRequest request = new OAuthRequest(Verb.POST, > "https:// > api.twitter.com/oauth/access_token"); >                         request.addBodyPar

[twitter-dev] Re: Support for oauth_bridge_code via this endpoint is deprecated

2011-06-09 Thread Felix Oldenburg
Hi, I'm facing the same problem since today. Mine was working until today, too :(. I was just about to finish the project (took me weeks of work) and now the bridge code conversion is broken aaarghh! Regards, Felix. On 9 Jun., 02:53, bisanthe wrote: > Hello, > When I run the fol

Re: [twitter-dev] Re: Support for oauth_bridge_code via this endpoint is deprecated

2011-06-09 Thread Felix Oldenburg
Ah, sorry I mean since today... Am 09.06.11 15:50, schrieb Felix Oldenburg: Hi, I'm facing the same problem until today. On 9 Jun., 02:53, bisanthe wrote: Hello, When I run the following code OAuthRequest request = new OAuthRequest(Verb.POST, &

[twitter-dev] Randomly failing OAuth procedure

2011-06-14 Thread Felix Oldenburg
orks. I don't change the code during this testing sessions, nor do i change the text I want to be tweetet. It just doesn't work sometimes. I can't reproduce this "unwanted behavior". Did Somebody have the same issue? Suggestions are also appreciated. Kind regards, Felix.

[twitter-dev] Re: Randomly failing OAuth procedure

2011-06-14 Thread Felix Oldenburg
27;s not the problem, I'll post some detailed debug report tomorrow. Many thanks for your inspiring reply, Felix! On 14 Jun., 17:10, Taylor Singletary wrote: > Hi Felix, > > Are you using a specific OAuth library for the OAuth portion? > > I would recommend adding a bit of lo

[twitter-dev] Re: Randomly failing OAuth procedure

2011-06-15 Thread Felix Oldenburg
tring contains a plain ~ it fails, still wondering why... Thanks again for the support and sunny greetings from Hamburg Germany, Felix. On 14 Jun., 18:03, Felix Oldenburg wrote: > Hi Taylor, > > thanks for many hints on tracking down the problem. > I don't use any libraries, ne

[twitter-dev] Re: oauth_bridge_code Disabled?

2011-06-16 Thread Felix Oldenburg
Hi DustyReagan, we had this topic lately, see this thread: http://groups.google.com/group/twitter-development-talk/browse_frm/thread/50fcc4f28cd6b659 On 16 Jun., 00:26, DustyReagan wrote: > Was oauth_bridge_code disabled? If so how are we suppost to bridge > @anywhere OAuth logins to the REST A

[twitter-dev] Re: Does “~” need encode?

2011-06-17 Thread Felix Oldenburg
I had the same issue with the ~ encoding. If ~ gets encoded to %7E the signature is wrong, but with a plain ~ it's fine. But if u look at abraham's php twitter library, which also implements the needed oauth functionality, u can see he also uses the non encoded ~. ( https://github.com/abraham/twit