Hi,
I want to create a list with given user ID to be included in list.
Thus I call /lists/create and then /lists/members/create_all to newly created list.
Following is a exact ruby code I run with twitter gem. These methods calls are thin wrapper of /lists/create and /lists/members/create_all API calls (https://github.com/sferik/twitter/blob/1afa40a7d73c8c6ca151b98e33797eaa781a076b/lib/twitter/rest/lists.rb#L331 , https://github.com/sferik/twitter/blob/1afa40a7d73c8c6ca151b98e33797eaa781a076b/lib/twitter/rest/lists.rb#L207)
list = client.create_list(“foo”, mode: “private”, description: “bar”); client.add_list_members list, existent_twitter_user_ids
and I sometime see
Twitter::Error::NotFound: Sorry, that page does not exist
I suspect newly created list information is not properly read via /lists/members/create_all call. What should I do to avoid this wried behaviour?