Re: [twitter-dev] Re: Problem With Fetching Followers and Following Id's

2011-06-27 Thread quenotacom
sorry, I dont understand what you mean, the problem is : I can call the 
followers query I accept say 100, calling lookup for them, the problem is, 
cursor_next is pointing to 5001 ocurrence,
so i have to do all the job again. 

-- 
Twitter developer documentation and resources: https://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


[twitter-dev] Re: Select nth friend/follower

2011-06-27 Thread quenotacom
I am having the same problem.

-- 
Twitter developer documentation and resources: https://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


[twitter-dev] Re: Strange problem searching from:shakira

2010-08-27 Thread quenotacom
Working now ... !

qn

On 26 ago, 23:39, quenotacom webmas...@quenota.com wrote:
 Hi,

 I am having a 0 records / statuses when i try to search shakira
 screenname, is there any special consideration for that account?

 http//search.twitter.com/search.atom?from=shakira

 Thank you in advance.

 Quenotacom

-- 
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 membership to this group: 
http://groups.google.com/group/twitter-development-talk?hl=en


[twitter-dev] Re: home_timeline request fails after deleting a tweet

2010-08-26 Thread quenotacom
I am having exactly the same problem ... 500 after delete !

quenotacom

On 26 ago, 21:53, Matt Harris thematthar...@twitter.com wrote:
 Hi Jeff,

 This sounds very strange. Can you share some code so we can see what
 type of calls you are making to the API and try to debug.

 Thanks,
 Matt





 On Thu, Aug 26, 2010 at 8:52 AM, jsleuth jsle...@gmail.com wrote:
  I'm running into an interesting problem.  If I post a tweet via the
  api and then delete it, the next request made to the REST api will
  result in an http 500-technical error from the api.  A second request
  will execute just fine... except that the api won't give me a full
  count of tweets-- it drops the number by one (eg.  before the delete I
  was requesting, and getting 15 tweets, after the delete I'm requesting
  15 and twitter is sending 14).  After numerous tries for debugging I'm
  getting down to where the api is only returning 4 tweets for the
  home_timeline request!

  Has anyone else seen this behavior?  Am I inadvertently violating some
  protocol and being punished by the reduction in tweets?

  Thanks for your help.

  Best,
  Jeff Slutz

  jsle...@gmail.com
  jeffslutz.com

  --
  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 membership to this 
  group:http://groups.google.com/group/twitter-development-talk?hl=en

 --

 Matt Harris
 Developer Advocate, Twitterhttp://twitter.com/themattharris- Ocultar texto de 
 la cita -

 - Mostrar texto de la cita -

-- 
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 membership to this group: 
http://groups.google.com/group/twitter-development-talk?hl=en


[twitter-dev] Strange problem searching from:shakira

2010-08-26 Thread quenotacom
Hi,

I am having a 0 records / statuses when i try to search shakira
screenname, is there any special consideration for that account?

http//search.twitter.com/search.atom?from=shakira

Thank you in advance.

Quenotacom

-- 
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 membership to this group: 
http://groups.google.com/group/twitter-development-talk?hl=en


[twitter-dev] Destroy Tweet Problem

2010-07-08 Thread quenotacom
Hi,

I am having the following problem when trying to delete a tweet from
my app:

After selecting the tweet to delete or (destroy), I send the xmlhttp
with the destroy sentence specifying the ID to
delete, the ajax return a 200 code with the info of the tweet being
deleted (i thought the commit was done) ... and ... sometimes it works
and sometimes it reappears !, I checked the twitter site when i try to
delete the tweet from my app and sometimes after deleting ...  it is
still available in the twitter site, after two or three times it is
deleted ... but it looks like you have more than one copy of the tweet
and depending the syncronization there is a process that recreate the
tweet ... I reviewed my code to check no cached data was in my app but
i access using a random number in the URL to avoid cache

Any help appreciated.
Thnks
quenotacom


[twitter-dev] Re: Something is technically wrong Response 500

2010-01-04 Thread quenotacom
Thank you for the due dilligence (lol)... Resolved finally ... it was
a problem with percent encode and utf 8 encode of text (status), i
used huevuniverse to check
every step and finally was solved ... still some chararacter are
strange (latin characters), but it is working enough well ...

you are invited to use my old asp www.quenota.com-twitter app.

quenotacom

On Dec 27 2009, 3:36 pm, quenotacom webmas...@quenota.com wrote:
 Thank you,

 Language ASP CLASSIC

 What end point :http://twitter.com/statuses/update.xml

 Parameters:

 get_twitter_url
 ('POST',twitter_url,oauth_key333,oauth_key333s,token_auth_var,token_secret_­var,
 'http://twitter.com', // scope
 'status', // name of the parameter
 mensaje // the text to be send
 )

 //
 //-­---
 //
 function get_twitter_url
 (accion,url_var,url_customer,key_secret_o,token333,token334,scope,oaparamet­ro,mensaje)
 {
 var url_var2 =''
 if (accion == 'POST')
 {
         if (mensaje != '')
         {
                 var msgtxt = PE(''+oaparametro +'=')+ PE(mensaje)
                 var msgtxt2 = oaparametro+'='+ PE(mensaje)+''
                 var DataToSend  = msgtxt2
         }}

 if (accion == 'GET')
 {
         if (mensaje != '')
         {
                 url_var2 =  '?'+oaparametro+'='+PE(mensaje)
         }
         var msgtxt = ''
         var msgtxt2 = ''
         var DataToSend = null}

 var nonce_o = nonce_rut()
 var ts_o        = ts_rut()

 var base334 =
         accion
 +       ''+PE(url_var)
 +       url_var2
 +       ''+PE('oauth_consumer_key=')       + PE(url_customer)
 +       PE('oauth_nonce=')         + (nonce_o)
 +       PE('oauth_signature_method=')      + PE('HMAC-SHA1')
 +       PE('oauth_timestamp=')     + PE(ts_o)
 +       PE('oauth_token=')         + PE(token333)
 +       PE('oauth_version=')               + PE('1.0')
 +       msgtxt

 var key_secret  = key_secret_o;
 var firma               = PE(str2rstr_utf8(key_secret))++ ((str2rstr_utf8
 (token334)));
 firma           = (b64_hmac_sha1(firma, base334))

 var auth333     = 'OAuth oauth_version='                        + '1.0, '
                 +'oauth_nonce='                           + nonce_o       
 +', '
                 +'oauth_timestamp='                               + ts_o  
 +', '
                 +'oauth_consumer_key='                    + url_customer+', 
 '
                 +'oauth_token='                           + (token333)    
 +', '
                 +'oauth_signature_method'                       + 
 '=HMAC-SHA1, '
                 +'oauth_signature='                               + 
 PE(firma)     +''
                 + msgtxt2
                 +'\r\n'

 var w_atom1 = upload_http_get('upload',accion,url_var+url_var2,
 DataToSend,auth333,scope,mensaje)

 if (w_atom1)
 {
         Response.ContentType = text/html}

 else
 {
         Response.Write('Sorry I cannot get the url required ')

 }
 }
     - what parameters are you passing in (if you are authenticating, what
     user are you authenticating as?)

 user = quenotacom or qnnnews

     - if you are using OAuth, and you're having problems with oauth, please
     provide us the entire oauth header that is being passed

 100% operative for GET access, no for POST (the same rutine) attached

     - what was the response that the twitter api returned to you?

 Something is technically wrong Response 500

 My sites arewww.quenota.us/www.quenota.com

 When I remove the status (text to send) i receive a response saying
 everything is ok but for status/update i need to send a parameter, so
 it looks like
 the oauth is ok, the same when i change something in the signature ...
 so it looks something in your side.

 Thanks, if you need more let me know

 On Dec 22, 7:14 pm, Raffi Krikorian ra...@twitter.com wrote:



  in general, for situations like this, please realise that in order for us to
  help you, we need as much information as you can give us so that we can try
  to replicate the problem and hopefully track it down.  what is really
  helpful is the following:

     - what end point are you calling? (which method are you calling?  e.g.
     status/update)
     - what parameters are you passing in (if you are authenticating, what
     user are you authenticating as?)
     - if you are using OAuth, and you're having problems with oauth, please
     provide us the entire oauth header that is being passed
     - what was the response that the twitter api returned to you?

  if you suspect the problem is with your IP address or where you are calling
  from, then also please provide the IP address your call is coming from, and
  the time (as accurate as you can) that you made the call that failed.

  thanks!

  On Tue, Dec 22, 2009 at 3:06 PM, Mark McBride mmcbr...@twitter.com wrote:
   It means an error occurred processing your request.  Without more
   details (for example the specific headers and URLs) it's difficult to
   answer in more

[twitter-dev] Re: Something is technically wrong Response 500

2009-12-27 Thread quenotacom
Thank you,

Language ASP CLASSIC

What end point : http://twitter.com/statuses/update.xml

Parameters:

get_twitter_url
('POST',twitter_url,oauth_key333,oauth_key333s,token_auth_var,token_secret_var,
'http://twitter.com', // scope
'status', // name of the parameter
mensaje // the text to be send
)

//
//
//
function get_twitter_url
(accion,url_var,url_customer,key_secret_o,token333,token334,scope,oaparametro,mensaje)
{
var url_var2 =''
if (accion == 'POST')
{
if (mensaje != '')
{
var msgtxt = PE(''+oaparametro +'=')+ PE(mensaje)
var msgtxt2 = oaparametro+'='+ PE(mensaje)+''
var DataToSend  = msgtxt2
}
}
if (accion == 'GET')
{
if (mensaje != '')
{
url_var2 =  '?'+oaparametro+'='+PE(mensaje)
}
var msgtxt = ''
var msgtxt2 = ''
var DataToSend = null
}
var nonce_o = nonce_rut()
var ts_o= ts_rut()

var base334 =
accion
+   ''+PE(url_var)
+   url_var2
+   ''+PE('oauth_consumer_key=')   + PE(url_customer)
+   PE('oauth_nonce=') + (nonce_o)
+   PE('oauth_signature_method=')  + PE('HMAC-SHA1')
+   PE('oauth_timestamp=') + PE(ts_o)
+   PE('oauth_token=') + PE(token333)
+   PE('oauth_version=')   + PE('1.0')
+   msgtxt


var key_secret  = key_secret_o;
var firma   = PE(str2rstr_utf8(key_secret))++ ((str2rstr_utf8
(token334)));
firma   = (b64_hmac_sha1(firma, base334))

var auth333 = 'OAuth oauth_version='+ '1.0, '
+'oauth_nonce='+ nonce_o   
+', '
+'oauth_timestamp='+ ts_o  +', '
+'oauth_consumer_key=' + url_customer+', '
+'oauth_token='+ (token333)
+', '
+'oauth_signature_method'   + 
'=HMAC-SHA1, '
+'oauth_signature='+ PE(firma) 
+''
+ msgtxt2
+'\r\n'

var w_atom1 = upload_http_get('upload',accion,url_var+url_var2,
DataToSend,auth333,scope,mensaje)

if (w_atom1)
{
Response.ContentType = text/html
}
else
{
Response.Write('Sorry I cannot get the url required ')
}
}

- what parameters are you passing in (if you are authenticating, what
user are you authenticating as?)
user = quenotacom or qnnnews

- if you are using OAuth, and you're having problems with oauth, please
provide us the entire oauth header that is being passed

100% operative for GET access, no for POST (the same rutine) attached

- what was the response that the twitter api returned to you?

Something is technically wrong Response 500

My sites are www.quenota.us / www.quenota.com

When I remove the status (text to send) i receive a response saying
everything is ok but for status/update i need to send a parameter, so
it looks like
the oauth is ok, the same when i change something in the signature ...
so it looks something in your side.

Thanks, if you need more let me know


On Dec 22, 7:14 pm, Raffi Krikorian ra...@twitter.com wrote:
 in general, for situations like this, please realise that in order for us to
 help you, we need as much information as you can give us so that we can try
 to replicate the problem and hopefully track it down.  what is really
 helpful is the following:

    - what end point are you calling? (which method are you calling?  e.g.
    status/update)
    - what parameters are you passing in (if you are authenticating, what
    user are you authenticating as?)
    - if you are using OAuth, and you're having problems with oauth, please
    provide us the entire oauth header that is being passed
    - what was the response that the twitter api returned to you?

 if you suspect the problem is with your IP address or where you are calling
 from, then also please provide the IP address your call is coming from, and
 the time (as accurate as you can) that you made the call that failed.

 thanks!





 On Tue, Dec 22, 2009 at 3:06 PM, Mark McBride mmcbr...@twitter.com wrote:
  It means an error occurred processing your request.  Without more
  details (for example the specific headers and URLs) it's difficult to
  answer in more detail.

    ---Mark

 http://twitter.com/mccv

  On Tue, Dec 22, 2009 at 2:36 PM, quenotacom webmas...@quenota.com wrote:
   Nobody answer here ?

   On Dec 21, 4:06 pm, quenotacom webmas...@quenota.com wrote:
   Hi,

   I am using the REST api (oauth) , everything is working for GET
   operations, however I cannot POST an update/status because I always
   receive that message (Thanks for noticing we're going to fix it up and
   have things back to normal soon).

   Could you explain what is the meaning of that message ?

   Thanks

 --
 Raffi

[twitter-dev] Re: Something is technically wrong Response 500

2009-12-22 Thread quenotacom
Nobody answer here ?

On Dec 21, 4:06 pm, quenotacom webmas...@quenota.com wrote:
 Hi,

 I am using the REST api (oauth) , everything is working for GET
 operations, however I cannot POST an update/status because I always
 receive that message (Thanks for noticing we're going to fix it up and
 have things back to normal soon).

 Could you explain what is the meaning of that message ?

 Thanks


[twitter-dev] Something is technically wrong Response 500

2009-12-21 Thread quenotacom
Hi,

I am using the REST api (oauth) , everything is working for GET
operations, however I cannot POST an update/status because I always
receive that message (Thanks for noticing�we're going to fix it up and
have things back to normal soon).

Could you explain what is the meaning of that message ?

Thanks