I am looking at the Account Activity API and can see that I need to create a signature https://developer.twitter.com/en/docs/basics/authentication/guides/creating-a-signature.html
This basically consists of the oauth_nonce
,oauth_timestamp
& the oauth_signature
use in the following request to the Twitter API.
curl --request POST --url 'https://api.twitter.com/1.1/account_activity/webhooks.json?url=<URL>' --header 'authorization: OAuth oauth_consumer_key="<CONSUMER_KEY>", oauth_nonce="GENERATED", oauth_signature="GENERATED", oauth_signature_method="HMAC-SHA1", oauth_timestamp="GENERATED", oauth_token="<ACCESS_TOKEN>", oauth_version="1.0"'
However I'd like to have this process working through the Postman API client - does anyone know how this can be done?