Related to #28, I'm able to get rate limit info like x-rate-limit-reset from GET calls like users/show, but specifically for POST calls friendships/destroy or friendships/create I'm not able to see the headers.
Was it intentional to not show x-rate-limit-reset, etc. headers for POST? Or does Twitter not provide them?
I googled and people say it's 15 per 15 min window, but I tested it myself and was able to unfollow almost 20 accounts in the span of a minute without hitting the rate limit
GET application/rate_limit_status only returns application GET limits. POST calls are based on users, not applications.
Example: POST friendships/create > cannot see headers
Related to #28, I'm able to get rate limit info like
x-rate-limit-reset
from GET calls likeusers/show
, but specifically for POST callsfriendships/destroy
orfriendships/create
I'm not able to see the headers.Was it intentional to not show
x-rate-limit-reset
, etc. headers for POST? Or does Twitter not provide them?Related info:
friendships/destroy
's specific limit: https://developer.twitter.com/en/docs/basics/rate-limitsapplication/rate_limit_status
only returns application GET limits. POST calls are based on users, not applications.Example: POST friendships/create > cannot see headers
Example: GET users/show headers > can see headers