You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This program is free software: you can redistribute it and/or modify
8
8
it under the terms of the GNU General Public License as published by
@@ -355,7 +355,7 @@ cb.__call(
355
355
);
356
356
```
357
357
358
-
More [documentation for tweeting with media](https://dev.twitter.com/rest/public/uploading-media-multiple-photos) is available on the Twitter Developer site.
358
+
More [documentation for uploading media](https://developer.twitter.com/en/docs/media/upload-media/overview) is available on the Twitter Developer site.
359
359
360
360
### Requests with app-only auth
361
361
@@ -417,7 +417,7 @@ The library returns the response HTTP status code, so you can detect rate limits
417
417
I suggest you to check if the ```reply.httpstatus``` property is ```400```
418
418
and check with the Twitter API to find out if you are currently being
419
419
rate-limited.
420
-
See the [Rate Limiting FAQ](https://dev.twitter.com/rest/public/rate-limiting)
420
+
See the [Rate Limiting FAQ](https://developer.twitter.com/en/docs/basics/rate-limiting)
421
421
for more information.
422
422
423
423
If you allow your callback function to accept a second parameter,
@@ -644,12 +644,13 @@ often they will be decomposed, efficient objects with information about users,
644
644
Tweets, and timelines grouped, simplified, and stripped of unnecessary repetition.
645
645
646
646
Never care about the OAuth signing specialities and the JSON POST body
647
-
for POST collections/entries/curate.json. Codebird takes off the work for you
647
+
for POST and PUT calls to these special APIs. Codebird takes off the work for you
648
648
and will always send the correct Content-Type automatically.
649
649
650
-
Find out more about the [Collections API](https://dev.twitter.com/rest/collections/about) in the Twitter API docs.
650
+
Find out more about the [Collections API](https://developer.twitter.com/en/docs/tweets/curate-a-collection/overview/about_collections) in the Twitter API docs.
651
+
More information on the [Direct Messages API](https://developer.twitter.com/en/docs/direct-messages/api-features) and the [Account Activity API](https://developer.twitter.com/en/docs/accounts-and-users/subscribe-account-activity/overview) is available there as well.
651
652
652
-
Here’s a sample for adding a tweet using that API method:
653
+
Here’s a sample for adding a Tweet using the Collections API:
0 commit comments