[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Hello Tom, unfortunately, it still doesn´t work. When my basestring does not include x_auth_password and x_auth_username I don´t get an successfull response? Now I am doing it as it is described in the documentation on http://dev.twitter.com/pages/xauth. I get an successfull Response with

Re: [twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread Tom van der Woerdt
The problem is that you are confusing xAuth and OAuth. xAuth is only https://api.twitter.com/oauth/access_token, allowing you to exchange username/password for oauth_token and oauth_token_secret. OAuth only needs those two keys, not your username or password. (I would recommend that you read the

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this: GEThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses %2Ffriends_timeline.xmloauth_consumer_key%3D.%26oauth_nonce

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this: GEThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses %2Ffriends_timeline.xmloauth_consumer_key%3D.%26oauth_nonce

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this: GEThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses %2Ffriends_timeline.xmloauth_consumer_key%3D.%26oauth_nonce

Re: [twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread Tom van der Woerdt
Your Base String seems fine and the parameters in your URL look fine as well. However, like I said: try executing the request with code, not in your browser. That, and I'm not entirely sure about how Twitter's OAuth implementation works. You may have to send the oauth_* parameters in the

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this:

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this:

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Why all the German words? Because I come from Germany! Viele Grüße On 21 Sep., 11:29, andy andreas-wilkeme...@andreazw.de wrote: It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Why all the German words? Because I come from Germany! Viele Grüße On 21 Sep., 11:29, andy andreas-wilkeme...@andreazw.de wrote: It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Why all the German words? Because I come from Germany! Viele Grüße On 21 Sep., 11:29, andy andreas-wilkeme...@andreazw.de wrote: It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-20 Thread andy
Thank you for the quick help, I've just seen that the parameters since_id, since_date, max_id, count, page I have not supplied. Can there be a problem because in the absence of these? On 20 Sep., 20:10, Tom van der Woerdt i...@tvdw.eu wrote: Yes, OAuth is the authentication layer. If you are

Re: [twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-20 Thread Tom van der Woerdt
No, that's no problem. What I *did* just notice is that the parameters in your Base String don't match the parameters in your GET. Why are you sending x_auth_*? Tom On 9/20/10 8:21 PM, andy wrote: Thank you for the quick help, I've just seen that the parameters since_id, since_date, max_id,

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-20 Thread andy
I use xauth, so I can log in directly from my application for Twitter. For pure OAuth it läft an extra URL on Twitter and you get a pin code with which I return to my application needs. The xauth-i parameter to give, as it is described in the Twitter documentation. Would in my GET request, the

Re: [twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-20 Thread Tom van der Woerdt
Thanks, I know how xAuth works. ;-) This isn't xAuth though. The Base String consists of all parameters you send to Twitter. You aren't sending x_auth_username/x_auth_password (nor should you) so it shouldn't be in the Base String. You may be confused between xAuth and OAuth here: xAuth is

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-20 Thread andy
OK, tomorrow I will try it again. Thaks Andreas On 20 Sep., 20:37, Tom van der Woerdt i...@tvdw.eu wrote: Thanks, I know how xAuth works. ;-) This isn't xAuth though. The Base String consists of all parameters you send to Twitter. You aren't sending x_auth_username/x_auth_password (nor