[twitter-dev] Public Timeline Frozen

2010-04-20 Thread mattarnold1977
It looks like the public timeline api is reporting the same statuses
over-and-over again.  This started sometime yesterday (4/19) and
continues today.  Is anyone else experiencing this issue?

Thanks,
Matt


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


[twitter-dev] How to: display approximately geo-located Tweets on a map

2010-04-20 Thread bob.hitching
Hey everyone, I wanted to share with the group this Javascript library
which might be useful for any apps dealing with the new Places
feature.

Many apps display Tweets as points on a map, based on exact latitude/
longitude coordinates. Easy.

However the new Places feature allows Tweets to be approximately geo-
located, within a ‘Place’ of chosen granularity, e.g. a city, or a
neighborhood.

This is great for users who have ‘geo-privacy’ concerns about
revealing an exact latitude/longitude. But this approach presents a
challenge to us developers: how can approximately-located Tweets be
displayed on a map?!

Moreover, we need to adopt a standard way of showing these
approximately-located Tweets, to help users form a consistent
understanding of the Places feature.

‘polytweet’ is my Javascript library which displays approximately-
located Tweets on a Google Map.

I hacked it together at Chirp last week, because I will need something
like this for GeoMeme (my app, see http://www.geome.me), and also to
share it with other developers and encourage a standard approach.

You can see the demo at http://bit.ly/polytweetdemo which includes an
added bonus demo of Hovercards On A Map. Screenshots and more details
on http://hitching.net

The Javascript library itself is at http://code.google.com/p/polytweet/

Let us know what you think.


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


Re: [twitter-dev] Re: Early look at Annotations

2010-04-20 Thread Kingsley Idehen

Raffi Krikorian wrote:
Not to be glib, but they are more than welcome to join in on the 
conversation in the community. We plan to let the community really 
drive this one.




On Apr 19, 2010, at 8:06 PM, R_Macdonald  
wrote:



ReadWriteWebs's Co-Editor, Marshall Kirkpatrick, suggests today that
Twitter intends to leave the annotation classification system to be
determined by the market.
http://bit.ly/csK8Od

Although I appreciate that Twitter values keeping the annotation
ecosystem open for innovation and adaptation, I hope the conversation
on Linked Data metadata standards within Twitter annotations is just
beginning.

It could be an historic lost opportunity if the hard driving Twitter
team doesn�ft step back and consider soliciting the counsel of the W3C,
Sir TB-L, Nigel Shadbolt and others in the Linked Data community.
After all, Metaweb's Freebase team is just 3 blocks away.


--
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en



Raffi,

Is is a Wiki or some other publicly accessible shared document space 
where the What, Why, and How of Twitter's Structured Annotations is 
being developed?


--

Regards,

Kingsley Idehen	  
President & CEO 
OpenLink Software 
Web: http://www.openlinksw.com

Weblog: http://www.openlinksw.com/blog/~kidehen
Twitter/Identi.ca: kidehen 








[twitter-dev] Re: Mad about lists and cursors... please help

2010-04-20 Thread Zach
I don't know if this fix for next_cursor always being zero has been
deployed or not, but I'm still seeing this bug.  A fix for this would
be really awesome.


On Apr 17, 12:04 pm, Mark McBride  wrote:
> Yes.  A fix has been identified, and should be deployed in a few days
>
> Sent from mobile device
>
> On Apr 17, 2010, at 7:08 AM, Zach  wrote:
>
> > It's 10 days later and next_cursor on
> >http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-GET-list-member...
> > is still always 0, even when the user is being followed by far more
> > than 20 lists.  This is completely broken and prevents 3rd party apps
> > from discovering all lists that follow a given user.
>
> > Has anyone at Twitter even looked into this?
>
> > On Apr 7, 3:43 pm, Mark McBride  wrote:
> >> Eugene, we're aware of the issue and will take a look at it today.
>
> >>   ---Mark
>
> >>http://twitter.com/mccv
>
> >> On Wed, Apr 7, 2010 at 11:09 AM, eugene.man...@gmail.com <
>
> >> eugene.man...@gmail.com> wrote:
> >>> I posted this issue to @twitterapi twice, but they ignored it.
>
> >>> Dear API group, please address this question.
>
> >>> Thank you!
>
> >>> On Apr 6, 9:45 am, Spraycode  wrote:
>  Has anyone been able to solve this issue?  This is still  
>  crippling us.
>
>  Thanks!
>
>  On Apr 2, 5:25 am, luisfigo  wrote:
>
> > Having the same problem...
>
> > Triedhttp://api.twitter.com/1/avinashkaushik/lists/memberships.xml
> > and get 0 forcursor. This guy is followed by ton of lists in  
> > fact
>
> > Below is the snapshot of the end result I got... This is  
> > screwing up
> > our app right now...
>
> > .
> > 
> >>>http://a1.twimg.com/profile_background_images/79104366/twitter_backgr
> >>> ...
> > 
> > false
> > false
> > false
> > false
> > false
> > 3208
> > en
> > false
> > 
> > 
> > 
> > 0
> > 0
> > 
>
> > On Apr 1, 6:00 pm, Diego Rin Martin  wrote:
>
> >> I think it's a API bug, even in the twitter page the paginator
> >>> doesn't work
> >> as expected, sometimes
> >> appears, sometines not, and when appears it makes in a random  
> >> manner.
>
> >> i'm gettingcursor0 from API, using int or string  
> >> representation,
> >>> the bug
> >> is in the API that sends
> >> thecursor0 randomly.
>
> >> regards, diego.
>
> >> On Thu, Apr 1, 2010 at 2:38 AM, jmathai   
> >> wrote:
> >>> Are you sure you're using the string representation of the  
> >>>cursor
> >>> instead of the int?  The API'scursorexceeds PHP's max integer
> >>> value
> >>> (generally).
>
> >>> jmathai ~ $ php -r '$x =
> >>> json_decode
> >>> (1);
> >>> echo $x; echo "\n";
>
> >>> var_dump
> >>> ($x===1);
> >>> var_dump($x===1.111E+52);'
> >>> 1.111E+52
> >>> bool(false)
> >>> bool(true)
>
> >>> jmathai ~ $ php -r '$x =
> >>> 1; echo $x;
> >>> echo
> >>> "\n";
>
> >>> var_dump
> >>> ($x===1);
> >>> var_dump($x===1.111E+52);'
> >>> 1.111E+52
> >>> bool(true)
> >>> bool(false)
>
> >>> On Mar 31, 2:03 am, Diego Rin Martín  >>> m> wrote:
>  Hi there,
>
>  this is my first post to this group, i'm a spanish developer
> >>> dealing
>  with twitter api surprises, excuse my poor english, i'will do  
>  my
> >>> best
>  to comunicate nicest.
>
>  So, to the problem, I'm trying to retrieve the lists for a  
>  user,
> >>> via
>  list/membershipsget method, and passingcursoras parameter,  
>  I'm
>  having got random results, I explain myself, sometimes I made a
>  request (for user edans, that have a huge amount of pages to
> >>> paginate)
>  and I get one page, I passcursor-1 and I getcursor0,
> >>> sometimes I
>  get one page, I passcursor-1 i getcursor 
>  1331431515904087602,
> >>> then
>  I pass it and I get 0, sometimes I get a random number of  
>  pages,
> >>> but
>  never, never, be able to retrieve the total amount of pages.
>
>  I use php twitter-async classes to comunicate with API, I  
>  thought
> >>> that
>  it could be the cause of the problem, but using direct curl  
>  (via
> >>> php5-
>  curl extension) calls I'm having the same issues.
>
>  Same using json or xml.
>
>  I'm always getting 200 responses, so the call finish in a  
>  correct
> >>> way.
>
>  any clue?
>
>  I'm turning mad.
>
>  Thanks in advance.
>  diego.
>
> >>> --
> >>> To unsubscribe, reply using "remove me" as the subjec

[twitter-dev] Re: Multiple Account creation

2010-04-20 Thread Dinho
Sorry to bump this topic, but is there any here that can enlighten me?
Thanks in advance!

On Apr 18, 2:18 pm, Dinho  wrote:
> Hi there,
>
> I'm a little confused about the number of accounts that is allowed.
> Searching through this group, the web and reading the Twitter EULA it
> seems just a few are allowed. However in these 
> threadshttp://groups.google.com/group/twitter-development-talk/browse_thread...
> andhttp://groups.google.com/group/twitter-development-talk/browse_thread...
> it's stated that multiple accounts are allowed and that even 600
> accounts could be allowed.
>
> But after reading the StatTweets and Sportytweets stories, and their
> suspended accounts I'm a little confused. Since on the other hand,
> TweetmyJobs.com has stated they manage over 8000 different
> Twitteraccounts. And that sounds like a huge multi-account violation
> to me.
>
> We're currently setting up a localised version of Tweetmyjobs, which
> will require a lot less accounts, but we would still need around 250
> accounts (lto localise the jobs in different areas to different
> channels). So my question is; would this be acceptable and what would
> be the best way to set this up, without violating Twitters TOS. Or
> would it just be a waste of my time?


[twitter-dev] Search old tweets

2010-04-20 Thread Francisco Mesa
I know the limits in API search, about 1.000-1.400 tweets using page
variables. But, I need to search old tweets about a popular hashtag (2
weeks ago). I try to limit the search using geo options, but the limit
is the time, not the number. How can I implement that search?

Regards,

Francisco Mesa


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


[twitter-dev] Things Every Developer Should Know - link to faq doesn't works

2010-04-20 Thread sleepwalker
"If you are starting with the API, familiarize yourself with the FAQ
and know that it exists."

When you tty to open link to faq (http://dev.twitter.com/FAQ), you'll
see 404 error. Link should be http://dev.twitter.com/faq (this one
I've tryed and it's really redirecting to faq).


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


[twitter-dev] Anywhere tweetbox() onComplete?

2010-04-20 Thread kovshenin
Hey, I'm firing the tweetbox() function and everything seems great.
The only thing I'd like to do is set focus to the tweet box as soon as
it loads and it seems to work fine with a few jQuery tricks, but
unfortunatelly requires to use the setTimeout function to focus when
the elements are there. The frame .ready state doesn't show anything,
because it seems that the tweetbox is being built via javascript.
Anyways, I thought there's some onComplete function which I can hook
to when the elements are actually shown in the frame?

Thanks.


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


[twitter-dev] Re: Introduce yourself!

2010-04-20 Thread kovshenin
Konstantin Kovshenin from Moscow, Russia. CTO at a startup called
Frumatic. Founder of a Twitter app called Foller.me. Blog at 
http://kovshenin.com
and tweet at @kovshenin. PHP, WordPress, Amazon EC2, S3, SimpleDB,
etc. Cheers! =)


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


[twitter-dev] @anywhere style, button, language customization

2010-04-20 Thread Furkan Kuru
Hello,

Is there a simple way to change the text and visualization of anywhere
components?


-- 
Furkan Kuru


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


Re: [twitter-dev] Things Every Developer Should Know - link to faq doesn't works

2010-04-20 Thread Taylor Singletary
Thanks, I'll fix that up.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Apr 20, 2010 at 12:56 AM, sleepwalker
wrote:

> "If you are starting with the API, familiarize yourself with the FAQ
> and know that it exists."
>
> When you tty to open link to faq (http://dev.twitter.com/FAQ), you'll
> see 404 error. Link should be http://dev.twitter.com/faq (this one
> I've tryed and it's really redirecting to faq).
>
>
> --
> Subscription settings:
> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>


Re: [twitter-dev] @anywhere style, button, language customization

2010-04-20 Thread Taylor Singletary
Hi Furkan,

There are few customization options at this time. One goal of @Anywhere is
to create a consistent user experience for interfacing with Twitter on
whatever site a user visits that has implemented it. There will of course be
more customization options in the future. At Chirp, the @Anywhere team
provided a preview of using the @Anywhere JavaScript API to interface with
most methods of the Twitter API, allowing you to build the experience you'd
like to see using the same basic building blocks.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Apr 20, 2010 at 3:00 AM, Furkan Kuru  wrote:

> Hello,
>
> Is there a simple way to change the text and visualization of anywhere
> components?
>
>
> --
> Furkan Kuru
>


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


Re: [twitter-dev] Search old tweets

2010-04-20 Thread Taylor Singletary
Sorry, Francisco, it's not possible at this time. What search provides today
is the maximum historical perspective of tweets that Twitter offers now.
There might be other, third-party historical archives of tweets that you can
find.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Apr 20, 2010 at 5:31 AM, Francisco Mesa wrote:

> I know the limits in API search, about 1.000-1.400 tweets using page
> variables. But, I need to search old tweets about a popular hashtag (2
> weeks ago). I try to limit the search using geo options, but the limit
> is the time, not the number. How can I implement that search?
>
> Regards,
>
> Francisco Mesa
>
>
> --
> Subscription settings:
> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>


Re: [twitter-dev] Re: Mad about lists and cursors... please help

2010-04-20 Thread Taylor Singletary
It has not been deployed yet.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Apr 20, 2010 at 4:38 AM, Zach  wrote:

> I don't know if this fix for next_cursor always being zero has been
> deployed or not, but I'm still seeing this bug.  A fix for this would
> be really awesome.
>
>
> On Apr 17, 12:04 pm, Mark McBride  wrote:
> > Yes.  A fix has been identified, and should be deployed in a few days
> >
> > Sent from mobile device
> >
> > On Apr 17, 2010, at 7:08 AM, Zach  wrote:
> >
> > > It's 10 days later and next_cursor on
> > >http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-GET-list-member.
> ..
> > > is still always 0, even when the user is being followed by far more
> > > than 20 lists.  This is completely broken and prevents 3rd party apps
> > > from discovering all lists that follow a given user.
> >
> > > Has anyone at Twitter even looked into this?
> >
> > > On Apr 7, 3:43 pm, Mark McBride  wrote:
> > >> Eugene, we're aware of the issue and will take a look at it today.
> >
> > >>   ---Mark
> >
> > >>http://twitter.com/mccv
> >
> > >> On Wed, Apr 7, 2010 at 11:09 AM, eugene.man...@gmail.com <
> >
> > >> eugene.man...@gmail.com> wrote:
> > >>> I posted this issue to @twitterapi twice, but they ignored it.
> >
> > >>> Dear API group, please address this question.
> >
> > >>> Thank you!
> >
> > >>> On Apr 6, 9:45 am, Spraycode  wrote:
> >  Has anyone been able to solve this issue?  This is still
> >  crippling us.
> >
> >  Thanks!
> >
> >  On Apr 2, 5:25 am, luisfigo  wrote:
> >
> > > Having the same problem...
> >
> > > Triedhttp://api.twitter.com/1/avinashkaushik/lists/memberships.xml
> > > and get 0 forcursor. This guy is followed by ton of lists in
> > > fact
> >
> > > Below is the snapshot of the end result I got... This is
> > > screwing up
> > > our app right now...
> >
> > > .
> > > 
> > >>>http://a1.twimg.com/profile_background_images/79104366/twitter_backgr
> > >>> ...
> > > 
> > > false
> > > false
> > > false
> > > false
> > > false
> > > 3208
> > > en
> > > false
> > > 
> > > 
> > > 
> > > 0
> > > 0
> > > 
> >
> > > On Apr 1, 6:00 pm, Diego Rin Martin  wrote:
> >
> > >> I think it's a API bug, even in the twitter page the paginator
> > >>> doesn't work
> > >> as expected, sometimes
> > >> appears, sometines not, and when appears it makes in a random
> > >> manner.
> >
> > >> i'm gettingcursor0 from API, using int or string
> > >> representation,
> > >>> the bug
> > >> is in the API that sends
> > >> thecursor0 randomly.
> >
> > >> regards, diego.
> >
> > >> On Thu, Apr 1, 2010 at 2:38 AM, jmathai 
> > >> wrote:
> > >>> Are you sure you're using the string representation of the
> > >>>cursor
> > >>> instead of the int?  The API'scursorexceeds PHP's max integer
> > >>> value
> > >>> (generally).
> >
> > >>> jmathai ~ $ php -r '$x =
> > >>> json_decode
> > >>> (1);
> > >>> echo $x; echo "\n";
> >
> > >>> var_dump
> > >>> ($x===1);
> > >>> var_dump($x===1.111E+52);'
> > >>> 1.111E+52
> > >>> bool(false)
> > >>> bool(true)
> >
> > >>> jmathai ~ $ php -r '$x =
> > >>> 1; echo $x;
> > >>> echo
> > >>> "\n";
> >
> > >>> var_dump
> > >>> ($x===1);
> > >>> var_dump($x===1.111E+52);'
> > >>> 1.111E+52
> > >>> bool(true)
> > >>> bool(false)
> >
> > >>> On Mar 31, 2:03 am, Diego Rin Martín  > >>> m> wrote:
> >  Hi there,
> >
> >  this is my first post to this group, i'm a spanish developer
> > >>> dealing
> >  with twitter api surprises, excuse my poor english, i'will do
> >  my
> > >>> best
> >  to comunicate nicest.
> >
> >  So, to the problem, I'm trying to retrieve the lists for a
> >  user,
> > >>> via
> >  list/membershipsget method, and passingcursoras parameter,
> >  I'm
> >  having got random results, I explain myself, sometimes I made a
> >  request (for user edans, that have a huge amount of pages to
> > >>> paginate)
> >  and I get one page, I passcursor-1 and I getcursor0,
> > >>> sometimes I
> >  get one page, I passcursor-1 i getcursor
> >  1331431515904087602,
> > >>> then
> >  I pass it and I get 0, sometimes I get a random number of
> >  pages,
> > >>> but
> >  never, never, be able to retrieve the total amount of pages.
> >
> >  I use php twitter-async classes to comunicate with API, I
> >  thought
> > >>> that
> >  it could be the cause of the probl

[twitter-dev] One account to rule them all: questions

2010-04-20 Thread luisg
Hello people,

I'm trying to do something that I don't know if will work. Let me
explain the main idea:

1) A user 'login with twitter' in my application;
2) This user should have the possibility to 'add account'. This means
that, if a user owns more than 1 account, we will associate the 1st
account (the one he logged in: main account) and the new he want to
add (sub account). The goal is to tweet to sub-accounts as well as
edit sub-account details from main account.

The thing is, after I login with the main account, and if a want to
add a new sub-account, I have to go to twitter, enter sub-account user
and passwords, to get all the information so I can store in my DB.
But, when I give this account name and password, I don't want to login
(cause I'm already with the main account), I just want to retrieve the
information (especially the access token and secret).

Is possible to get access token and secret giving the account name and
password but without login? Doing that with human interaction would be
great, but I need to go to twitter always, right?

Any of you have an idea how can I do this?

Thanks,

Luis Gonçalves


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


[twitter-dev] Re: One account to rule them all: questions

2010-04-20 Thread kovshenin
I think that there's a Contributors API coming very soon which will
have the ability to do stuff "on behalf of".

On Apr 20, 5:41 pm, luisg  wrote:
> Hello people,
>
> I'm trying to do something that I don't know if will work. Let me
> explain the main idea:
>
> 1) A user 'login with twitter' in my application;
> 2) This user should have the possibility to 'add account'. This means
> that, if a user owns more than 1 account, we will associate the 1st
> account (the one he logged in: main account) and the new he want to
> add (sub account). The goal is to tweet to sub-accounts as well as
> edit sub-account details from main account.
>
> The thing is, after I login with the main account, and if a want to
> add a new sub-account, I have to go to twitter, enter sub-account user
> and passwords, to get all the information so I can store in my DB.
> But, when I give this account name and password, I don't want to login
> (cause I'm already with the main account), I just want to retrieve the
> information (especially the access token and secret).
>
> Is possible to get access token and secret giving the account name and
> password but without login? Doing that with human interaction would be
> great, but I need to go to twitter always, right?
>
> Any of you have an idea how can I do this?
>
> Thanks,
>
> Luis Gonçalves
>
> --
> Subscription 
> settings:http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


Re: [twitter-dev] One account to rule them all: questions

2010-04-20 Thread Taylor Singletary
Hi Luis,

I first want to make very clear that you shouldn't store logins and
passwords. Twitter's API will never return to you the password for a user,
and with the exception of using xAuth for Desktop & Mobile applications, you
should never be sending logins and passwords to the Twitter API. Basic Auth
will be deprecated in June and you should basically act as if it doesn't
exist now.

If your application is a web application, you should be using OAuth to first
establish a request token, then send the user to our OAuth Authorization
screen where they'll enter their account credentials, after which they'll be
sent to the oauth_callback URL (your application) that you specified in the
request token step. You'll then exchange that request token for an access
token, which you can then store in your database for further use until the
permission is revoked by your user.

"Login with Twitter" is not a means for you to store account credentials for
re-use through mechanization or otherwise with the Twitter.com website.

This diagram illustrates the OAuth flow succinctly:
http://oauth.net/core/diagram.png

To Kovshenin's point, Twitter will be rolling out a Contributors API feature
when it's ready. This allows for a single Twitter account to be managed by
sub-accounts, so that @reallycoolcompany's tweets come from
@reallycoolcompany but @jessica or @donald who work at @reallycoolcompany
don't have to know the account credentials for @reallycoolcompany to tweet
from the account. This is still a ways out.

Hope this helps clear it up.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Apr 20, 2010 at 6:41 AM, luisg  wrote:

> Hello people,
>
> I'm trying to do something that I don't know if will work. Let me
> explain the main idea:
>
> 1) A user 'login with twitter' in my application;
> 2) This user should have the possibility to 'add account'. This means
> that, if a user owns more than 1 account, we will associate the 1st
> account (the one he logged in: main account) and the new he want to
> add (sub account). The goal is to tweet to sub-accounts as well as
> edit sub-account details from main account.
>
> The thing is, after I login with the main account, and if a want to
> add a new sub-account, I have to go to twitter, enter sub-account user
> and passwords, to get all the information so I can store in my DB.
> But, when I give this account name and password, I don't want to login
> (cause I'm already with the main account), I just want to retrieve the
> information (especially the access token and secret).
>
> Is possible to get access token and secret giving the account name and
> password but without login? Doing that with human interaction would be
> great, but I need to go to twitter always, right?
>
> Any of you have an idea how can I do this?
>
> Thanks,
>
> Luis Gonçalves
>
>
> --
> Subscription settings:
> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>


Re: [twitter-dev] Public Timeline Frozen

2010-04-20 Thread Taylor Singletary
Hi Matt,

I'm not able to see the issue at the moment -- can you provide some more
details like examples of duplicate status ids? The public_timeline endpoint
is cached for 60 seconds, so it will remain stagnant if you're requesting it
more often than that.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Apr 20, 2010 at 4:44 AM, mattarnold1977
wrote:

> It looks like the public timeline api is reporting the same statuses
> over-and-over again.  This started sometime yesterday (4/19) and
> continues today.  Is anyone else experiencing this issue?
>
> Thanks,
> Matt
>
>
> --
> Subscription settings:
> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>


Re: [twitter-dev] Does @anywhere follow buttons count towards api limits?

2010-04-20 Thread Taylor Singletary
The same IP-based rate limits that apply on Twitter.com apply with @Anywhere
integrations. Your web browser is essentially the client with @Anywhere, not
the originating site, so if you're on a shared network that Twitter would
see as a single IP address and there's a lot of accessing of @Anywhere
content on that IP address, you'll likely run into rate limiting of some
kind. We're looking at ways in the short term to make this more flexible
without compromising the point of rate limiting.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Mon, Apr 19, 2010 at 7:54 PM, Albert Stein  wrote:

> Ok, really need some feedback from Twitter here...
>
> Some of my customers (and me) are getting the follow buttons - and
> then after a few page refreshes, we get the button that says xyz is
> not found and then another refresh and we get nothing at all. We are
> showing 10-15 follow buttons on a page.
>
> So are we hitting the api limits? There is no talk on the anywhere
> documentation that it uses limits so I am unsure.
>
> Thanks for any help.
>
>
> --
> Subscription settings:
> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>


Re: [twitter-dev] @anywhere style, button, language customization

2010-04-20 Thread Furkan Kuru
Thanks Taylor,

For the time being, the consistency limits us in English medium.

By the way, I think JavaScript API documentation is not fully available yet.


I could only find the js api cheat sheet.
http://platform.twitter.com/js-api.html



On Tue, Apr 20, 2010 at 4:37 PM, Taylor Singletary <
taylorsinglet...@twitter.com> wrote:

> Hi Furkan,
>
> There are few customization options at this time. One goal of @Anywhere is
> to create a consistent user experience for interfacing with Twitter on
> whatever site a user visits that has implemented it. There will of course be
> more customization options in the future. At Chirp, the @Anywhere team
> provided a preview of using the @Anywhere JavaScript API to interface with
> most methods of the Twitter API, allowing you to build the experience you'd
> like to see using the same basic building blocks.
>
> Taylor Singletary
> Developer Advocate, Twitter
> http://twitter.com/episod
>
>
>
> On Tue, Apr 20, 2010 at 3:00 AM, Furkan Kuru  wrote:
>
>> Hello,
>>
>> Is there a simple way to change the text and visualization of anywhere
>> components?
>>
>>
>> --
>> Furkan Kuru
>>
>
>


-- 
Furkan Kuru


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


Re: [twitter-dev] @anywhere style, button, language customization

2010-04-20 Thread Taylor Singletary
The details in that document are beta at best and we aren't strongly
encouraging their use yet.

Everything covered at http://dev.twitter.com/anywhere/begin is the bulk of
what's to be considered stable at this time.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Apr 20, 2010 at 7:32 AM, Furkan Kuru  wrote:

> Thanks Taylor,
>
> For the time being, the consistency limits us in English medium.
>
> By the way, I think JavaScript API documentation is not fully available
> yet.
>
> I could only find the js api cheat sheet.
> http://platform.twitter.com/js-api.html
>
>
>
>
> On Tue, Apr 20, 2010 at 4:37 PM, Taylor Singletary <
> taylorsinglet...@twitter.com> wrote:
>
>> Hi Furkan,
>>
>> There are few customization options at this time. One goal of @Anywhere is
>> to create a consistent user experience for interfacing with Twitter on
>> whatever site a user visits that has implemented it. There will of course be
>> more customization options in the future. At Chirp, the @Anywhere team
>> provided a preview of using the @Anywhere JavaScript API to interface with
>> most methods of the Twitter API, allowing you to build the experience you'd
>> like to see using the same basic building blocks.
>>
>> Taylor Singletary
>> Developer Advocate, Twitter
>> http://twitter.com/episod
>>
>>
>>
>> On Tue, Apr 20, 2010 at 3:00 AM, Furkan Kuru wrote:
>>
>>> Hello,
>>>
>>> Is there a simple way to change the text and visualization of anywhere
>>> components?
>>>
>>>
>>> --
>>> Furkan Kuru
>>>
>>
>>
>
>
> --
> Furkan Kuru
>


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


Re: [twitter-dev] Tweetbox not tweeting

2010-04-20 Thread Taylor Singletary
Hi Chaoskreator,

I just tried the most simple example of setting up a Tweet box and was able
to get the tweet sent to Twitter.com without issue. I don't see anything
obviously wrong in your HTML. If you've "connected" the user, then I also
assume that your callback URL specified in your application record
corresponds to the subdomain and host of the server using @Anywhere.

What happens when you try the simplest possible example in isolation of
other Javascript? (no widgets, other frameworks, etc.) Determining that will
give you a baseline to determine if it's an interaction with some other
resource on your page in conflict.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Mon, Apr 19, 2010 at 10:12 PM, chaoskreator wrote:

> Hello. I've been developing a Twitter modification for integration
> with phpBB3. I've registered in Anywhere, set everything up and I'm
> using the following code in the HTML header:
>
> 
>
> And this is the body:
>
> 
>
> 
>
> >
> id="twitter-connect-placeholder"> > >
>
> >
> >
>
> > >> >> And this is the body: >> >> >> >>
>>
>> >>
>>> id="twitter-connect-placeholder"> >> >>
>>
>> >>
>> >>
>>
>> >>