[twitter-dev] mass DM limitation

2011-08-06 Thread Ran Margaliot
Hello,

I want to allow the users of my app to send the same DM to several of
their followers, what are the limitations regarding that? is it just
the 200 DM per day limit? i dont want twitter to flag my users as
spammers...

thanks

Ran

-- 
Have you visited the Developer Discussions feature on 
https://dev.twitter.com/discussions yet?

Twitter developer links:
Documentation and resources: https://dev.twitter.com/docs
API updates via Twitter: https://twitter.com/twitterapi

Unsubscribe or change your group membership settings: 
http://groups.google.com/group/twitter-development-talk/subscribe


[twitter-dev] Re: Twitter API changes

2011-06-27 Thread Ran Margaliot
but currently i am getting all the information for them...
when will i stop getting this info?

On Jun 27, 7:45 am, kamesh SmartDude kamesh.smartd...@gmail.com
wrote:
 hi,
 the users who are already logged in should logout and relogin
 againotherswise they will not get any data(not only DM's) because u
 chaged the application settings(i found this issues in my app)

 //kamesh







 On Sun, Jun 26, 2011 at 6:42 PM, Ran Margaliot ran5...@gmail.com wrote:
  Hello,

  Recently twitter has changed the access level that apps are getting to
  the user detail, an app need to mark that it needs access to the
  user's DMs in order to get it (unlike before), i have marked this
  option in my app settings page on twitter so i will have full data
  access for new users registering to my app. my question is what about
  users who performed authentication before that change? will i still be
  getting full access to their account (including DMs)?

  are there any other issues in the api change that might restrict the
  data im getting from twitter?

  Thanks!

  Ran

  --
  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 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] Twitter API changes

2011-06-26 Thread Ran Margaliot
Hello,

Recently twitter has changed the access level that apps are getting to
the user detail, an app need to mark that it needs access to the
user's DMs in order to get it (unlike before), i have marked this
option in my app settings page on twitter so i will have full data
access for new users registering to my app. my question is what about
users who performed authentication before that change? will i still be
getting full access to their account (including DMs)?

are there any other issues in the api change that might restrict the
data im getting from twitter?

Thanks!

Ran

-- 
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] Getting twitter user through email address

2011-01-15 Thread Ran Margaliot
Hello, is it possible, using the twitter api, to get a twitter user
through his email - searching for user by email? i know that the user/
show method was able to do it, but now the email parameter has been
deprecated.

any thoughts?

-- 
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


[twitter-dev] Re: Getting all mentions

2010-12-10 Thread Ran Margaliot

Still having that problem, can anyone help?
On Dec 8, 7:34 pm, Ran Margaliot ran5...@gmail.com wrote:
 Hi guys,

 I am trying to get all the mentions of my authenticated user, if i use
 statuses/mentions it returns (according to the documentation) up to
 800 recent mentions, what if i want to go dipper? get more then 800
 last mentions?
 is it possible to go over all of the user's followers and check if
 they mentioned him (i know it doesn't covers everything but its a good
 start for me)?

 any thoughts?

-- 
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


[twitter-dev] Getting all mentions

2010-12-08 Thread Ran Margaliot
Hi guys,

I am trying to get all the mentions of my authenticated user, if i use
statuses/mentions it returns (according to the documentation) up to
800 recent mentions, what if i want to go dipper? get more then 800
last mentions?
is it possible to go over all of the user's followers and check if
they mentioned him (i know it doesn't covers everything but its a good
start for me)?

any thoughts?

-- 
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


[twitter-dev] Re: Getting more then 20 mentions

2010-11-23 Thread Ran Margaliot
Hi,

i am using the following ruby code to get the mentions:

statuses = []
page = 1
begin
   page_statuses = twitter_client.mentions(:include_entities
= true,
  :trim_user = true,
  :include_rts = true,
  :since_id = since_id,
  :page=page,
  :count=200)
   statuses.concat(page_statuses)
   page+=1
   end while !page_statuses.empty?

but im still only getting 20-30 mentions, am i doing something wrong?

On Nov 22, 10:09 pm, Matt Harris thematthar...@twitter.com wrote:
 Hi Ran,

 The mentions timeline method is described in detail here:
    http://dev.twitter.com/doc/get/statuses/mentions

 In it we describe the count parameter which you can use to retrieve up to
 the most recent 200 mentions in one request. To obtain more you need to use
 the page parameter to move through the timeline. The maximum mentions
 available through the API is 800.

 I hope that helps,
 @themattharris
 Developer Advocate, Twitterhttp://twitter.com/themattharris







 On Mon, Nov 22, 2010 at 9:54 AM, Ran Margaliot ran5...@gmail.com wrote:
  Hello,

  i am trying to get the latest mentions of my authenticated user, i use
  statuses/mentions, i know this method only returns 20 statuses per
  page, but even when i use paging, i dont get all of my users mentions
  (i get about 30 when my user has a lot more).

  any thoughts?

  --
  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

-- 
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