[twitter-dev] Re: Send a tweet with custom login C++ (BEGINNER)

2011-06-09 Thread shamm
Hello, I am using MS Visual Studio 2008. I only need to send tweets after oAuth, and it should be accessed by multiple users. Help Please regards shamm On Jun 9, 10:23 am, Mukesh Srivastav mukicha...@gmail.com wrote: What is the compiler you are using for C++ ? -*Mukesh* On Wed,

[twitter-dev] Re: Translate app description to different languages

2011-06-09 Thread Alver
Ok, make an Issue: http://code.google.com/p/twitter-api/issues/detail?id=2233 On 8 июн, 17:40, Tom van der Woerdt i...@tvdw.eu wrote: You can't, however I'd recommend that you file a bug report athttp://code.google.com/p/twitter-api/issues/list Tom On 6/8/11 2:10 PM, Alver wrote:

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

2011-06-09 Thread kupad
I'd like to add that I'm receiving the same error. Are there any alternatives we can use? --phil On Jun 8, 8:53 pm, bisanthe bisanthe.gro...@gmail.com wrote: Hello, When I run the following code                         OAuthRequest request = new OAuthRequest(Verb.POST, https://

[twitter-dev] xAuth Android not working

2011-06-09 Thread Lancelot Admin
Hi everyone, I've been trying this for a couple of days and I can't make it work. I have the xAuth permissions enabled on my app but I keep getting the same error over and over: 01 Unauthorized: Authentication credentials were missing or incorrect. This is the code I have using twitter4j:

[twitter-dev] Re: Send a tweet with custom login C++ (BEGINNER)

2011-06-09 Thread Flo
Here is a list of librarys you could use: https://dev.twitter.com/pages/libraries#cplusplus This one looks nice: http://code.google.com/p/twitcurl/ On 9 Jun., 08:05, shamm shaena...@gmail.com wrote: Hello, I am using MS Visual Studio 2008. I only need to send tweets after oAuth, and it

[twitter-dev] Twitter Button Torture!

2011-06-09 Thread 3 rexes
Hi all, I have an issue here. All I want is the horizontal button on my website, but can only get the vertical button to look right. I've spent 2 hours I just don't have the brain power to figure this out. Oddly, if I paste the horizontal code on the same page as the vertical code, the

[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 bisanthe.gro...@gmail.com wrote: Hello, When I run the following code                         OAuthRequest request = new OAuthRequest(Verb.POST, https:// api.twitter.com/oauth/access_token);                        

[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 bisanthe.gro...@gmail.com wrote: Hello, When I run

[twitter-dev] Problems with search @username

2011-06-09 Thread Andreea Andronic
Hello everyone! I had an application that searched for the mentions of a person through the search@username option. Until a few days ago, it seemed to work just fine. But now it only returns very few results or none. Do you know if twitter is having problems with the search option or if anyone

[twitter-dev] pls help wtf tweetr class for AS3 dont work :(

2011-06-09 Thread Maksim Bunkow
MB twitter API updated?? What you use for Flash(actionscript3)? -- С уважением, Буньков Максим. bim...@gmail.com -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi

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, bisanthebisanthe.gro...@gmail.com wrote: Hello, When I run the following code OAuthRequest request = new

[twitter-dev] Re: 401 error from CRON job

2011-06-09 Thread e.p.c.
On Jun 8, 12:35 pm, tomofo ross.mckeg...@gmail.com wrote: Throws the error: GEThttp://twitter-api-app11.apigee.com/1/account/verify_credentials 401: Could not authenticate with OAuth. Maybe I'm missing something, but 1) I didn't think twitter uses apigee and 2) when fetch that URL I

[twitter-dev] API: get current status won't show the latest update

2011-06-09 Thread Gang T
Hi there, I am trying to get the latest status update through API, and figured out that the API won't return the latest update until couple minutes later. Here are the steps I tried: 1. get input from user 2. get the latest status update through rest API (I tried account/ verify_credentials,

[twitter-dev] Re: Streaming API, Following just a couple of people

2011-06-09 Thread Ray Slakinski
Turns out that urllib2's readline has a buffer which you can work around by creating a custom readline that uses read(1) Example: def readline(): buffer = '' while True char = conn.read(1) if '\n' == char: return buffer else: buffer += char Hope this helps out anyone

Re: [twitter-dev] Re: Streaming API, Following just a couple of people

2011-06-09 Thread Matt Harris
Hey Ray, Thanks for sharing the solution for the problem you hit. Glad everything worked out. Best @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer Advocate, Twitter On Thu, Jun 9, 2011 at 10:17 AM, Ray Slakinski ray.slakin...@gmail.comwrote: Turns out

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

2011-06-09 Thread Matt Harris
Hey everyone, Along with the JSAPI the oauth_bridge_code was one of the unsupported components of @anywhere. It was originally made available during the Social App Workshop July last year but wasn't released as a supported or production ready system. We caution against using unsupported

[twitter-dev] Re: 401 error from CRON job

2011-06-09 Thread tomofo
Apigee is a proxy to Twitter; gives you significantly higher usage caps. I replaced my Apigee Id with 111. The real question is: has anyone used Apigee and Twitter for protected functions like status updates or (as I'm trying to do) add users to a list. -- Twitter developer

[twitter-dev] Previously working app now failing with Not authorized to use this endpoint, code: 37

2011-06-09 Thread digitalacorn
A previously working app now failing with Not authorized to use this endpoint, code: 37 The url I am hitting is http://twitter.com/followers/ids.json?oauth_body_hash=XXXuser_id=oauth_nonce=oauth_timestamp= Has something changed? Kind Regards, Peter. --

Re: [twitter-dev] Previously working app now failing with Not authorized to use this endpoint, code: 37

2011-06-09 Thread Taylor Singletary
Hi Peter, You should make sure that you're using the api.twitter.com domain and a version number in your URLs -- instead of the API call you're making, it should be to https://api.twitter.com/1/followers/ids.json -- you aren't using the API correctly otherwise and can have issues like this and

[twitter-dev] Needs object from desktop application ?

2011-06-09 Thread ari_endo
Hello, I am developing Twitter AP with Excel VBA. When accessing with an object generated from twitter class, it works. But only with XMLHttpRequest (without object) it gets Woah there message. Is object-oriented programming needed when developing desktop applications? I need reference for

[twitter-dev] Tweet Button for my Wix Site

2011-06-09 Thread World0fWizards
I'm having a lot of trouble using a Tweet Button. I know the basics on how to use it, and I also know how to use it on sites such as WordPress and etc. However, I've switched to a Web site called http://www.wix.com. While the site is really good to use, I'm having issues with the Tweet Button on

[twitter-dev] Android Twitter Account Manager

2011-06-09 Thread Naveen
Hi! I am developing an android application and want to integrate Twitter. What I understand is if on user's device, official android Twitter app is installed then we can authenticate using account manager. AccountsByType is com.twitter.android.auth.login and if not installed then show web page.