Re: [twitter-dev] Multiple Tweet buttons on a page

2010-10-20 Thread Slate Smith
Yes, you can. You set it programmatically. I setup one for my WordPress each has a unique tweet button with a data-url. On Oct 20, 2010, at 12:51 PM, conde wrote: Can we have multiple tweet buttons on one page? It worked when we used the old Tweetmeme, but not when we switched to the new

Re: [twitter-dev] How to tweet?

2010-10-20 Thread Slate Smith
I use @abraham's TwitterOAuth lib with a wrapper class. It's pretty simple actually. Here is my method: public function Tweet($tweet) { $parameters = array(status = $tweet); $status = $this-connection-post(statuses/update, $parameters);

Re: [twitter-dev] Rate limit not getting reset

2010-10-20 Thread Slate Smith
Every set of calls I log my rate limit api calls remaining [ $App- APICallsRemaining;] for later tracking ... On Oct 20, 2010, at 2:08 PM, Josh wrote: I keep having troubles with an application I'm developing that uses the Twitter API. I'm getting errors stating that I'm over my rate limit,

Re: [twitter-dev] Re: Multiple Tweet buttons on a page

2010-10-20 Thread Slate Smith
pm, Slate Smith sl...@slatesmith.com wrote: Yes, you can. You set it programmatically. I setup one for my WordPress each has a unique tweet button with a data-url. On Oct 20, 2010, at 12:51 PM, conde wrote: Can we have multiple tweet buttons on one page? It worked when we used the old Tweetmeme

Re: [twitter-dev] Requesting Whitelisting for Rate Limit

2010-10-20 Thread Slate Smith
I think that real issue is that Twitter isn't profitable [The Company itself] and as such cannot afford to hire enough staff to evaluate all white-listing requests. Without an acquisition or a profit model of veritable ability to hire more mgrs ... ? ... On Oct 20, 2010, at 4:13 PM, Adam

Re: [twitter-dev] Re: Multiple Tweet buttons on a page

2010-10-21 Thread Slate Smith
NP :P On Oct 21, 2010, at 12:01 PM, conde wrote: Actually got it to work now! Secret is this line within the tag data-via=your_domain On Oct 20, 4:05 pm, Slate Smith sl...@slatesmith.com wrote: Inspect element on the Tweet buttons and you will see the individual params.http://plnt.me/xRlft

Re: [twitter-dev] Hello from Mark Mason

2010-10-21 Thread Slate Smith
Add a stripe? haha. Umm GD/PHP Image-Magick ... Pretty easy app maybe you could roll it in like 20 mins. Check out Image-Magick and @abraham's TwitterOAuth lib for PHP/REST. - Slate. On Oct 21, 2010, at 8:38 PM, Mark Mason wrote: I am interested in building a couple of twitter

[twitter-dev] Twitter PHP Class

2010-10-21 Thread Slate Smith
Anyone want to buy a Twitter PHP 5 OAuth / REST wrapper. It's self explanatory. Then we can really cut down on list traffic :P - Slate. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements

Re: [twitter-dev] Authlogic OAuth 401 error

2010-10-22 Thread Slate Smith
Check out NTP and your servers NTPD i think NTPD -q will show if your server[s] clock is correctly regarding clock/timestamp. On Oct 22, 2010, at 8:22 AM, CWorster wrote: Maybe it's an issue with the clock/timestamp on your production system.

Re: [twitter-dev] Force new Oauth page to authenticate

2010-10-22 Thread Slate Smith
session_destroy(); On Oct 22, 2010, at 12:52 PM, gfpt27 wrote: We have an SAAS application that currently intereacts with TW. The user clicks the TWicon, they aunthenticate on TW page and allow the connection. Is there a way to force the app to look for a new authentication page rather than

Re: [twitter-dev] Snowflake Update: String representations of IDs are now included in JSON reponses

2010-10-22 Thread Slate Smith
Het Matt. I've been patiently waiting for a whitelisting on a listing/web app client I'm testing. 350 calls an hour is kiling me. Even with proxied JSON calls etc [hassle]. I'd really like it if you could take a look at my request! My original request was for my name for testing

Re: [twitter-dev] A little Google Voice SMS example in Perl

2010-10-23 Thread Slate Smith
So ill. PHP time now. On Oct 23, 2010, at 5:32 PM, James Jones wrote: That is awesome Sent from my iPhone On Oct 23, 2010, at 4:44 PM, Neal Rauhauser nrauhau...@gmail.com wrote: I take no responsibility for what you perl monks do with this one ... mind the SSL dependency, the CPAN load

Re: [twitter-dev] User Base Count?

2010-10-24 Thread Slate Smith
I indexed ~22m unique id_str's today. I'll let you all know if in a few days :p On Oct 24, 2010, at 8:47 PM, Tim Haines wrote: This blog post from @Ev in early October says more than 165m http://blog.twitter.com/2010/10/newtwitterceo.html On Mon, Oct 25, 2010 at 8:23 AM, Slate Smith sl

Re: [twitter-dev] Status Update - Error - 500 Internal Server Error

2010-10-25 Thread Slate Smith
Don't post your keys online :P I get 500s randomly. Not sure why. Very randomly and not often. On Oct 25, 2010, at 8:05 AM, Anandhev wrote: Hi, I get the error while sending Status Update request. Details are shown below. Sometimes, I get proper responses when i exclude Authorization

Re: [twitter-dev] Search by screen name or name?

2010-10-25 Thread Slate Smith
You can use followers/ids friends/ids and specify a user - You can do statuses/followers/ to grab s bunch of metadata either by id_str or screen_name with both provide obviously supply the id or screen_name and other options accordingly. - Slate. On Oct 25, 2010, at 6:07 AM, Christian

Re: [twitter-dev] friends/ids and followers/ids not working in oauth

2010-10-25 Thread Slate Smith
there is a current ticket on ids, also did you notice the newer id_str versus id, use that - and don't use the console it's limiting. $parameters = array(screen_name = BARACKOBAMA, cursor = $cursor); $method = followers/ids; $followers = $this-connection-get($method, $parameters); Max

Re: [twitter-dev] Re: Snowflake: An update and some very important information

2010-10-25 Thread Slate Smith
It's there. But for some reason now in all types of json requests - On Oct 25, 2010, at 6:28 AM, Johannes la Poutre wrote: @Themattharris: was there any change to the implementation timeline? Quote: by 22nd October 2010 (Friday): String versions of ID numbers will start appearing in the API

Re: [twitter-dev] Certificate Twitter Apps

2010-10-25 Thread Slate Smith
They can't even respond to Whitelisting requests. Good luck. On Oct 23, 2010, at 7:56 PM, loretoparisi wrote: Hi, I'm cto for stickphone.me and lyricsmood.me, oauth based twitter apps. Many users told us that they just don't use our oauth sign in service, since it seems to them to be unsafe

Re: [twitter-dev] Empty responses

2010-10-25 Thread Slate Smith
I haven't seen a method for checking a suspended or deleted account yet. If anyone knows of a hack for that it would be nice. Messes w/ metrics etc. On Oct 25, 2010, at 11:04 AM, Tim wrote: My cron jobs are picking up failures pulling specific users. The response body is empty, and the

Re: [twitter-dev] Re: Help for twitteroauth

2010-10-25 Thread Slate Smith
Put in breaks in Abrahams lib and example and see where you're failing. On Oct 23, 2010, at 4:50 PM, Vishnu S wrote: Hi Abraham.. im using your twitterauth. Ive got everything set right, but im also getting the error as mentioned about. One thing i noticed is that the url is:

Re: [twitter-dev] don't work twitter api

2010-10-25 Thread Slate Smith
Old session? On Oct 25, 2010, at 3:06 AM, Иван Каптюк wrote: Почему Twitter не дает oauth_token, когда я пытаюсь его получит отсылая свой key и secret. Выдает This page is no longer valid. It looks like someone already used the token information you provided. Please return to the site that

Re: [twitter-dev] Search across Twitter Lists or home timeline?

2010-10-25 Thread Slate Smith
yes. iterate through and slam all their tweets into an array or db with unique tweet text values and run your searches through there ... On Oct 25, 2010, at 3:37 PM, Quy wrote: Is there a way for me to run a search across tweets from users I'm following or users on a list? I was thinking of

Re: [twitter-dev] WHAT THE HELL ARE YOU THINKING

2010-10-25 Thread Slate Smith
On Twitter's behalf, how many clients are using it for Desktop Apps? If you can't embed a web server [like AIR does also] then well ... HTML is pretty standard and simple. It also helps rapidly deploy apps. If you're worried, you should be using Adobe AIR and AS3.0. GTK+? The avg developer

Re: [twitter-dev] Re: Empty responses

2010-10-25 Thread Slate Smith
Gotcha, I'll write in a class to test for suspension/deletion etc. On Oct 25, 2010, at 3:51 PM, Tim wrote: I believe users/show returns with status 403, with user has been suspended in the text On Oct 25, 5:19 pm, Slate Smith sl...@slatesmith.com wrote: I haven't seen a method for checking

Re: [twitter-dev] Poor experience in Streaming API

2010-10-25 Thread Slate Smith
There was a super insane outage and percentage of calls with all aspects of the api yesterday and saturday, it was killing me. no idea on why ... On Oct 25, 2010, at 3:59 PM, Augusto Santos wrote: Hi folks, I'm getting poor experience in Streaming API with status/filter using locations.

Re: [twitter-dev] Re: WHAT THE HELL ARE YOU THINKING

2010-10-25 Thread Slate Smith
Hah @ can I recommend the following book How to win friends and influence people.. It's a good read... Also Keiya, Twitter is a Web App, and the majority of people jumping on the trail are WEB DEVELOPERS. They don't want to use C++ and GTK++. I can't even imagine having to waste the time

Re: [twitter-dev] Re: How to let my app always send tweets to my account?

2010-10-26 Thread Slate Smith
One of my offerings runs the same way. Click on your app, and get your access keys for the user. Make the app your business name with a link to your business site. Make the twitter account name ... your business name. Instead of getting back keys for the user, you already have them. Use

Re: [twitter-dev] Tweetbox with un-editable text

2010-10-26 Thread Slate Smith
Yes. Is this Flash/HTML ? You could set a textarea to uneditable, then they could adjust the html with firebug, so just make a transparent png matching the sites font with a tweet button. On Oct 26, 2010, at 2:53 AM, Threedukes wrote: Is there a way to create a Tweet box with a

Re: [twitter-dev] Twitter authentication

2010-10-27 Thread Slate Smith
just download TwitterOAuth by @abraham problem solved. On Oct 27, 2010, at 2:35 PM, DallyPost wrote: I am trying to write a php script that will post a new status to my twitter account. I have tried several available scripts and they have all failed. The error messages I receive do not give a

Re: [twitter-dev] updating twitter tools inside my wordpress blog

2010-10-27 Thread Slate Smith
yeah via tweetdeck, via web or ... via your app when clicking on your app goes to app url. On Oct 27, 2010, at 2:11 PM, dave g wrote: i dont understand this step? Your Application's Name will be what shows up after via in your twitter stream -- Twitter developer documentation and