[twitter-dev] Looking for suggestions for a good PHP linkify function

2011-07-13 Thread Adam Green
Does anyone have a really solid PHP entity linkifier set of code they recommend? Or is there one hidden in the API that I never noticed? Any advice from the Twitter people? Surely this is something that everyone needs. -- Have you visited the Developer Discussions feature on

[twitter-dev] Is there a standard PHP linkify routine?

2011-07-12 Thread Adam Green
Every PHP app that displays tweets needs to apply the entities as links. Is there a standard function for this available, or are hundreds of thousands of developers each rolling their own? If you have a favorite code snippet, please point it out here. Maybe we can all review them and figure out

[twitter-dev] I'm looking for a better PHP linkify() function

2011-07-11 Thread Adam Green
I've been using a tweet linkify() function that I wrote myself a couple of years ago, and then rewrote to take advantage of entities when they arrived. It works well about 98% of the time, but it still chokes on some UTF8 characters, which causes URLs to be applied with an incorrect offset of a

[twitter-dev] Re: Unwanted T.CO shortening

2011-06-11 Thread Adam Green
I believe that at least part of Twitter's motivation is based on protecting users from spam and viruses. In that case, why not implement some purging alogrithms? Here's an easy one. If an account follows nobody and only sends emails with a screen name and URL, it is probably a spammer and the URLs

[twitter-dev] What is the correct way to get user permission to publish a tweet

2011-06-06 Thread Adam Green
I have a client who wants to print tweets on t-shirts and other products. The API TOS says to get the users' permission, but doesn't say how. Is it enough to send them a tweet asking to use one of their past tweets, and then get a tweeted permission from them? Or does this permission have to be in

Re: [twitter-dev] Re: Twitter API to Get the HashTags List

2011-05-31 Thread Adam Green
://code.google.com/p/twitter-api/issues/list Change your membership to this group: https://groups.google.com/forum/#!forum/twitter-development-talk -- Adam Green Twitter API Consultant and Analyst http://140dev.com, @140dev http://2012twit.com, @2012twit 781-879-2960 -- Twitter developer

[twitter-dev] Limit on sending DMs to opt-in users

2011-05-29 Thread Adam Green
I have a client who needs the following scenario: - Many users, potentially thousands or tens of thousands, will sign up to receive a daily DM from the client's site. With a limit of 250 DMs per day, the client wants to use each user's account to send a DM to that user. - These users will give

Re: [twitter-dev] Re: Issue - My twitter account won't load

2011-05-17 Thread Adam Green
://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi Issues/Enhancements Tracker: https://code.google.com/p/twitter-api/issues/list Change your membership to this group: https://groups.google.com/forum/#!forum/twitter-development-talk -- Adam Green Twitter API

Re: [twitter-dev] app register error message in wrong language

2011-04-26 Thread Adam Green
/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Analyst http://140dev.com, @140dev http://2012twit.com, @2012twit 781-879-2960

[twitter-dev] What I want to see at a developer event

2011-04-26 Thread Adam Green
Actually, let me start with what I don't want to see: 1. Announcements of really cool features coming in the future, because we won't believe that they will ever appear (how are annotations coming along?). 2. Promises of greatly increased rate limits, because every announcement of that in the past

Re: [twitter-dev] i just want to automate status tweets using one twitter account...

2011-04-22 Thread Adam Green
: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Analyst http://140dev.com, @140dev http

Re: [twitter-dev] Unable to retweet using statuses/retweet

2011-04-21 Thread Adam Green
/statuses/retweet/:id On Wed, Apr 20, 2011 at 8:55 PM, Adam Green 140...@gmail.com wrote: I'm trying to build some retweeting code and am unable to get / statuses/retweet to work. I keep getting an error of: {request:\/1\/statuses\/retweet.json,error:Not found} I thought I may have been doing

[twitter-dev] Unable to retweet using statuses/retweet

2011-04-20 Thread Adam Green
I'm trying to build some retweeting code and am unable to get / statuses/retweet to work. I keep getting an error of: {request:\/1\/statuses\/retweet.json,error:Not found} I thought I may have been doing something incorrect, even though I used exactly the same code format that I use for other

[twitter-dev] What is the hourly limit on retweets?

2011-04-18 Thread Adam Green
I need to set up an automatic retweeting capability for a client who wants to hold debates on Twitter. The basic idea is that 10-20 people would be tweeting using a predefined tag. My code would follow all of these users with the streaming API, and any tweets they send with this tag would be

Re: [twitter-dev] need twitter spam for a research project

2011-04-03 Thread Adam Green
-- Adam Green Twitter API Consultant and Analyst http://140dev.com, @140dev http://2012twit.com, @2012twit 781-879-2960 -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http

Re: [twitter-dev] Re: Streaming API Rate Limiting

2011-04-01 Thread Adam Green
://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Analyst http://140dev.com, @140dev http://2012twit.com, @2012twit 781-879-2960 -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] Re: Introducing Web Intents

2011-03-30 Thread Adam Green
about the high bar you expect us to jump over, and how we will be shut off instantly if we miss. That is my favorite part of your announcement. Well done! It is the first major Twitter announcement I've read in many months that didn't send a chill down my spine. - Adam Green Twitter API Developer

Re: [twitter-dev] app to block all users ending with numerals

2011-03-25 Thread Adam Green
/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation

[twitter-dev] Re: setFollow Filter mentions

2011-03-25 Thread Adam Green
I use this technique also to limit tweets to just the ones I'm explicitly following, but you'll find that the in_array() PHP function makes this easier than creating separate tests for each user_id. I create an array of user_ids I want to follow, pass this array to Phirehose, and then compare the

[twitter-dev] I found a good solution for PHP language detection in tweets

2011-03-24 Thread Adam Green
processing time of language detection is unnoticeable. The only limitation I found is that it doesn't detect Chinese or Japanese, but I think I can find other solutions for this. If anyone knows of a simple PHP detection algorithm for these languages, please let me know. - Adam Green Twitter API

[twitter-dev] Are embedded videos available through the API?

2011-03-19 Thread Adam Green
I have a client who wants to extract videos that are embedded in tweets and displayed in the new Twitter UI. I realized that I have never seen anything here about this issue. A check of the docs shows nothing on this, and using the relevant API calls for statuses doesn't return any fields related

Re: [twitter-dev] Re: Are embedded videos available through the API?

2011-03-19 Thread Adam Green
into the NewTwitter UI. Probably rendered inline. It'll be interested to see Ryan or Taylor respond to this, but I doubt there is anything for us to use. Scott. On 19 Mar 2011, at 23:38, Adam Green wrote: I have a client who wants to extract videos that are embedded in tweets

[twitter-dev] New form of follow spam

2011-03-17 Thread Adam Green
Is anyone else seeing this? I'm getting a very odd type of follower. These are accounts that have 0 tweets, and yet are following thousands of people and being followed back by large numbers. I understand follow spam when you have some message to spread, but this is confusing. Is the goal to

Re: [twitter-dev] Re: consistency and ecosystem opportunities

2011-03-15 Thread Adam Green
. -- Ryan Sarver @rsarver On Mon, Mar 14, 2011 at 9:28 AM, Adam Green 140...@gmail.com wrote: But you will allow it, right? Even if it is thinking small, it will not be blocked? That is our problem. We can't separate business advice from a warning to prepare to be cut off. We can't help watching

[twitter-dev] Please hire a developer relations manager

2011-03-14 Thread Adam Green
First of all, I honestly believe that Twitter HQ values developers and appreciates their contribution. That is why I decided to devote myself to this area a couple of years ago. I was amazed that when a dev reported a problem the engineer responsible replied here and tried to solve it. That is

Re: [twitter-dev] Please hire a developer relations manager

2011-03-14 Thread Adam Green
AM, Tom van der Woerdt i...@tvdw.eu wrote: Isn't what you are describing the task of a developer advocate, Taylor Singletary and Matt Harris (and others?)? Tom On 3/14/11 2:44 PM, Adam Green wrote: First of all, I honestly believe that Twitter HQ values developers and appreciates

Re: [twitter-dev] Re: consistency and ecosystem opportunities

2011-03-14 Thread Adam Green
-- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your

Re: [twitter-dev] Please hire a developer relations manager

2011-03-14 Thread Adam Green
. On Mon, Mar 14, 2011 at 9:44 AM, Adam Green 140...@gmail.com wrote: First of all, I honestly believe that Twitter HQ values developers and appreciates their contribution. That is why I decided to devote myself to this area a couple of years ago. I was amazed that when a dev reported

Re: [twitter-dev] Re: consistency and ecosystem opportunities

2011-03-13 Thread Adam Green
and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API

Re: [twitter-dev] Re: consistency and ecosystem opportunities

2011-03-12 Thread Adam Green
://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates

Re: [twitter-dev] consistency and ecosystem opportunities

2011-03-12 Thread Adam Green
be remembered. Scott. On 13 Mar 2011, at 00:16, Adam Green wrote: Interesting that neither Ryan or anyone else from Twitter has replied once to any of the questions here, (way to go on showing your interest in the developer community, Ryan), so I'll address this question to everyone else

Re: [twitter-dev] Re: consistency and ecosystem opportunities

2011-03-12 Thread Adam Green
-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list

Re: [twitter-dev] consistency and ecosystem opportunities

2011-03-12 Thread Adam Green
be remembered. Scott. On 13 Mar 2011, at 00:16, Adam Green wrote: Interesting that neither Ryan or anyone else from Twitter has replied once to any of the questions here, (way to go on showing your interest in the developer community, Ryan), so I'll address this question to everyone

Re: [twitter-dev] Re: consistency and ecosystem opportunities

2011-03-12 Thread Adam Green
Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com

Re: [twitter-dev] Re: consistency and ecosystem opportunities

2011-03-12 Thread Adam Green
to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues

Re: [twitter-dev] Re: wait time for Site Streams whitelist ?

2011-03-02 Thread Adam Green
Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev

Re: [twitter-dev] Rate limit

2011-02-28 Thread Adam Green
/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer

Re: [twitter-dev] Rate limiting for streaming API

2011-02-19 Thread Adam Green
On Sat, Feb 19, 2011 at 7:52 AM, Tom van der Woerdt i...@tvdw.eu wrote: On 2/19/11 1:49 PM, Paresh Nakhe wrote: Hi,  From what i understand, there is no concept of rate limiting for streaming api. Actually it does make sense because if anyone is to use 'statuses/sample' method (say) the

Re: [twitter-dev] Streaming API vs. Search API: no API returns 95% of intented tweets

2011-02-15 Thread Adam Green
-- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your

[twitter-dev] Freedom's just another word for nothing left to lose

2011-02-13 Thread Adam Green
taken away the most important thing you wanted. Now we can build with our eyes open. And don't be afraid to speak up. This is Twitter. Revolutions happen here. Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http

Re: [twitter-dev] Re: DM rate limit

2011-02-13 Thread Adam Green
/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter

Re: [twitter-dev] Twitter Development platform - A Rant

2011-02-13 Thread Adam Green
/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter

Re: [twitter-dev] Twitter Development platform - A Rant

2011-02-13 Thread Adam Green
? Not a support person. Matt and Taylor do a good job of technical support. I appreciate what they do. I mean someone who could run a developer program. I haven't seen someone like that yet. Could some of the $200 million pay that salary? I look forward to your blog post on this, Edward. -- Adam Green

[twitter-dev] Whitelisting is still in the docs. Please remove this.

2011-02-12 Thread Adam Green
http://dev.twitter.com/pages/rate-limiting#whitelisting Ryan, Taylor, Matt, I know changing mistakes in the docs has been impossible in the past. My guess is that someone lost the password for these pages. But leaving the whitelisting statement in the docs and the whitelisting form online is a

Re: [twitter-dev] Whitelisting is still in the docs. Please remove this.

2011-02-12 Thread Adam Green
:26 AM, Adam Green 140...@gmail.com wrote: http://dev.twitter.com/pages/rate-limiting#whitelisting Ryan, Taylor, Matt, I know changing mistakes in the docs has been impossible in the past. My guess is that someone lost the password for these pages. But leaving the whitelisting statement

Re: [twitter-dev] Re: user stream api

2011-02-11 Thread Adam Green
Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http

Re: [twitter-dev] Update on Whitelisting

2011-02-10 Thread Adam Green
/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api

Re: [twitter-dev] High number of 502 errors in REST API

2011-02-04 Thread Adam Green
exceed our timeout filters. I would recommend lowering count values as a response to this error and retrying. Taylor On Thursday, February 3, 2011, Jan Paricka jpari...@gmail.com wrote: Adam, I noticed the same - 502 502 502 502 a lot lately! Jan On Fri, Feb 4, 2011 at 5:14 AM, Adam Green 140

[twitter-dev] High number of 502 errors in REST API

2011-02-03 Thread Adam Green
I'm using 1/statuses/user_timeline to verify that I am receiving all the tweets for a set of users I am following with the streaming API. Once per day I try to collect all the tweets for these users using this API call. The total process takes about 100 calls to the API. For the last week I have

[twitter-dev] Missing tweets or invalid statuses_count

2011-02-02 Thread Adam Green
I'm collecting all the tweets for potential 2012 presidential candidates, and I'm finding that /statuses/user_timeline returns much fewer tweets than listed as the total in an account. The docs say that this API call is limited to 3,200 tweets, but this is happening with accounts that have fewer

Re: [twitter-dev] Missing tweets or invalid statuses_count

2011-02-02 Thread Adam Green
, Twitter http://twitter.com/themattharris On Wed, Feb 2, 2011 at 2:28 PM, Adam Green 140...@gmail.com wrote: I'm collecting all the tweets for potential 2012 presidential candidates, and I'm finding that /statuses/user_timeline returns much fewer tweets than listed as the total in an account

[twitter-dev] Retweet_count value is returning odd values

2011-02-02 Thread Adam Green
It looks like the retweet_count value is invalid. Here is what I do for 32 possible 2012 candidates: 1. Each hour I get all tweets from statuses/user_timeline. They each fit within the 3,200 limit. 2. Collect the value of retweet_count for all tweets for each candidate. 3. Sum these values to get

Re: [twitter-dev] email address and phone number for friends

2011-01-31 Thread Adam Green
://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc

Re: [twitter-dev] Upgrading from Read to Read / Write access for OAuth API Key

2011-01-30 Thread Adam Green
/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http

[twitter-dev] Does whitelisting still exist?

2011-01-25 Thread Adam Green
I'm beginning to get suspicious about the whitelisting program. We've gone from it being relatively easy to get whitelisted, to it being harder but at least Brian Sutorius or someone else apologized, to it being much harder and Taylor saying they can't even reply with a denial, to no response at

Re: [twitter-dev] Sending Tweets using 0Auth - beginner question

2011-01-21 Thread Adam Green
-- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your

Re: [twitter-dev] Re: Sending Tweets using 0Auth - beginner question

2011-01-21 Thread Adam Green
- SYx', 'user_secret' = 'xWiVkvBJcGA', )); Any idea why this is hapenning ? On Jan 21, 8:28 pm, Adam Green 140...@gmail.com wrote: If you only need to send tweets to a single Twitter account, you can try this PHP code, which uses Matt Harris's OAuth library

Re: [twitter-dev] is streaming API read-only?

2011-01-18 Thread Adam Green
-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http

Re: [twitter-dev] Twitter feed for corporate website/portal

2011-01-11 Thread Adam Green
own. This means anything that follows the format of http://domain.com will work. You can even use http://twitter.com. -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev On Tue, Jan 11, 2011 at 7:43 PM, TehOne ele...@gmail.com wrote: I have a corporate website/portal that I

Re: [twitter-dev] API fails when tweeting with single asterisk

2011-01-07 Thread Adam Green
PM, Adam Green 140...@gmail.com wrote: So I can assume that * and * word will remain unavailable for normal tweeting? On Tue, Jan 4, 2011 at 7:22 PM, Matt Harris thematthar...@twitter.com wrote: Hey Adam, The status update you are sending is part of the SMS command set.     http

[twitter-dev] Transferring a suspended account to the proper owner

2011-01-06 Thread Adam Green
I have a client who owns a .com domain name and has applied for a trademark for the matching name. The Twitter account for this name was created by someone else and has been suspended. Is there any way to help them take over this account? They really want to build a Twitter based app around this

Re: [twitter-dev] Search result is incorrect

2011-01-05 Thread Adam Green
/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via

[twitter-dev] API fails when tweeting with single asterisk

2011-01-04 Thread Adam Green
There are some very strange behaviors when using the statuses/update API call to send a tweet with a single asterisk. 1. If you send a tweet with just a single asterisk: * The API returns 200 and the response string contains the previous good tweet in the timeline. No new tweet with an asterisk

Re: [twitter-dev] API fails when tweeting with single asterisk

2011-01-04 Thread Adam Green
4, 2011 at 4:09 PM, Adam Green 140...@gmail.com wrote: There are some very strange behaviors when using the statuses/update API call to send a tweet with a single asterisk. 1. If you send a tweet with just a single asterisk: * The API returns 200 and the response string contains the previous

[twitter-dev] Tweeting with single asterisk

2011-01-04 Thread Adam Green
@googlegroups.com Hi Adam, That's correct, a tweet cannot be just a * or a * word. Something like ** or * html { would be fine though. Best, @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Tue, Jan 4, 2011 at 5:29 PM, Adam Green 140...@gmail.com wrote: So I can

Re: [twitter-dev] how can i get statistics data about a search

2010-12-30 Thread Adam Green
/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http

Re: [twitter-dev] Getting user information with oAuth.

2010-12-30 Thread Adam Green
membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues

[twitter-dev] Is id_str getting dropped again from streaming API output?

2010-12-30 Thread Adam Green
I'm getting errors that the id_str property is not found within the JSON output of the streaming API. I'm using Phirehose, but nothing has changed with that or my code that is using it. This has happened before. Is there a problem returning id_str again? -- Twitter developer documentation and

[twitter-dev] Unable to tweet with leading *

2010-12-30 Thread Adam Green
When I try entering a tweet through Twitter.com that starts with an asterisk, I get an error of Sorry! We did something wrong, and the tweet does not get sent. The same thing happens if I use Tweetdeck. To try this, send the following tweet: * test There is no problem using a single asterisk

Re: [twitter-dev] Unable to tweet with leading *

2010-12-30 Thread Adam Green
is not put into my account. It is just ignored. This set of errors is reproduced when I try it with multiple accounts. On Thu, Dec 30, 2010 at 11:36 AM, Adam Green 140...@gmail.com wrote: When I try entering a tweet through Twitter.com that starts with an asterisk, I get an error of Sorry! We did

Re: [twitter-dev] Re: Can't get any tweet from a particular account using Search Api

2010-12-29 Thread Adam Green
-- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your

Re: [twitter-dev] Re: URL encode problem

2010-12-26 Thread Adam Green
On Sun, Dec 26, 2010 at 5:11 AM, epomqo wenzi0...@gmail.com wrote: And apparently the lang parameter sometimes doesn't work: I still get tweets in other languages. From my experience the lang parameter, is not a language detection algorithm. It just pays attention to the language the user

Re: [twitter-dev] Re: URL encode problem

2010-12-26 Thread Adam Green
On Dec 26, 11:28 am, Adam Green 140...@gmail.com wrote: On Sun, Dec 26, 2010 at 5:11 AM, epomqo wenzi0...@gmail.com wrote: And apparently the lang parameter sometimes doesn't work: I still get tweets in other languages. From my experience the lang parameter, is not a language

Re: [twitter-dev] Help!! please. How to collect old data by Twitter API

2010-12-24 Thread Adam Green
: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker

Re: [twitter-dev] searching for 50 000 words

2010-12-24 Thread Adam Green
://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http

Re: [twitter-dev] Search API from_user_id doesn't match up with the proper Twitter user_id

2010-12-22 Thread Adam Green
to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements

[twitter-dev] Taking over a suspended account

2010-12-22 Thread Adam Green
I have a client who wants an account name that is owned by someone else. The account has been suspended for a long time, the client says. Is there a procedure or an email address they can use to apply to get that account name? I suggested just moving to another name, but they *really* want this

Re: [twitter-dev] Re: Search API from_user_id doesn't match up with the proper Twitter user_id

2010-12-22 Thread Adam Green
Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http

Re: [twitter-dev] Stream problems on 2010-12-17?

2010-12-18 Thread Adam Green
Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com

Re: [twitter-dev] Confused by oAuth and wanting to do something simple

2010-12-12 Thread Adam Green
/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http

Re: [twitter-dev] Stream API need help

2010-12-09 Thread Adam Green
://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http

Re: [twitter-dev] Re: register twitter app which is on intranet

2010-12-08 Thread Adam Green
-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list

Re: [twitter-dev] Help with finding code to push tweets to Twitter from website CMS.

2010-12-07 Thread Adam Green
://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http

Re: [twitter-dev] hot to get all friend list

2010-12-02 Thread Adam Green
; $header = curl_getinfo($ch); $http_code = $header['http_code']; if ($http_code == 200) { foreach($results as $index = $user_id) { // code to store friend's user_id somewhere } } else { // code to log or email error report } } -- Adam Green Twitter API Consultant

Re: [twitter-dev] Display tweets according to the design guidelines

2010-12-02 Thread Adam Green
Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http

Re: [twitter-dev] language and geocode problem

2010-11-30 Thread Adam Green
-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change

Re: [twitter-dev] Simple example of how to post a tweet from my website using PHP

2010-11-28 Thread Adam Green
: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com

Re: [twitter-dev] New Twitter changes affecting Juitter App?

2010-11-28 Thread Adam Green
your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com

Re: [twitter-dev] Trying to get rid of twitter spammers

2010-11-27 Thread Adam Green
of the community. But those tweets were helping us to extend our network. On Fri, Nov 26, 2010 at 6:42 PM, Adam Green 140...@gmail.com wrote: As long as you aren't trying to capture and deliver *all* tweets, there are a couple of good ways to cut out spammers. One thing I do is save all mentions

Re: [twitter-dev] Trying to get rid of twitter spammers

2010-11-27 Thread Adam Green
: http://twitturk.com/tweet/search?q=lol On Sat, Nov 27, 2010 at 3:33 PM, Adam Green 140...@gmail.com wrote: All of your sample spam tweets are from suspended accounts, yet the tweets were only sent yesterday. That means that the spammers behavior was so aggressive that they were suspended

Re: [twitter-dev] Trying to get rid of twitter spammers

2010-11-27 Thread Adam Green
: It returns a redirection to amazon.com product page Example: http://www.amazon.com/gp/product/B0041E16RC?ie=UTF8tag=iphone403d-20linkCode=as2camp=1789creative=9325creativeASIN=B0041E16RC On Sat, Nov 27, 2010 at 4:04 PM, Adam Green 140...@gmail.com wrote: The URLs again return a code of 200

Re: [twitter-dev] Trying to get rid of twitter spammers

2010-11-27 Thread Adam Green
word is the common: http://twitturk.com/tweet/search?q=lol And an example account: http://twitter.com/Bomuchellxee All tweets are spam and lol is common. It has also 0 folloing and 3 followers (real accounts I guess). Unbelievable! On Sat, Nov 27, 2010 at 4:29 PM, Adam Green 140

Re: [twitter-dev] Trying to get rid of twitter spammers

2010-11-26 Thread Adam Green
100K people. We plan to delete all of the tweets containing lol word. It is also used by our users (Turkish people) writing in English though. Any better suggestions? -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources

Re: [twitter-dev] Re: tweet your own account

2010-11-23 Thread Adam Green
nov, 15:20, Adam Green 140...@gmail.com wrote: If you are willing to run a PHP script from your website, this tutorial will give you all the details you need to tweet to your account from a website:http://140dev.com/twitter-api-programming-tutorials/hello-twitter-oau... On Mon, Nov 22, 2010

Re: [twitter-dev] tweet your own account

2010-11-22 Thread Adam Green
/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via

Re: [twitter-dev] historic trend data 10 days old

2010-11-22 Thread Adam Green
/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http://140dev.com @140dev -- Twitter developer documentation and resources: http

Re: [twitter-dev] historic trend data 10 days old

2010-11-22 Thread Adam Green
. There's not much on Twitter that allows one to dwell on the past. Taylor On Mon, Nov 22, 2010 at 6:26 AM, Adam Green 140...@gmail.com wrote: Taylor, there has been much talk lately about the new Twitter Analytics tool that would deliver historical data. Am I correct in assuming

Re: [twitter-dev] Re: Twitter + Gnip Partnership

2010-11-20 Thread Adam Green
/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk -- Adam Green Twitter API Consultant and Trainer http

Re: [twitter-dev] URGENT: Advice on building the correct API stream

2010-11-18 Thread Adam Green
Thanks Neil On 16 November 2010 22:19, Adam Green 140...@gmail.com wrote: I'm using the streaming API to pull in tweets at that rate for several sites with no problem. The default access level gives you all the tweets for up to 5,000 users. http://dev.twitter.com/pages/streaming_api_methods

Re: [twitter-dev] URGENT: Advice on building the correct API stream

2010-11-18 Thread Adam Green
wrote: Hi Adam, Thanks for your advice, just wanted to ask if you have a link to the solution you mentioned for point 2 i.e. the Search API? Regards Neil On 18 November 2010 15:19, Adam Green 140...@gmail.com wrote: On Thu, Nov 18, 2010 at 10:03 AM, Neil Sheth sheth.n...@gmail.com wrote

  1   2   >