Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the adapter beyond simple SELECT/INSERT/UPDATE/DELETE operations with TwitterAds.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from TwitterAds, along with an indication of whether the procedure succeeded or failed.
TwitterAds Adapter Stored Procedures
Name | Description |
GetOAuthAccessToken | Obtains the OAuth access token to be used for authentication with Twitter. If using a Windows application, set AuthMode to APP. If using a Web App, set AuthMode to WEB and specify the AuthToken, AuthKey, and Verifier returned by GetOAuthAuthorizationUrl. |
GetOAuthAuthorizationURL | Gets the authorization URL, AuthToken, and AuthKey from Twitter. Navigate to the authorization URL in an Internet browser. This will return a verifier token that you will need to use as input along with the AuthToken for the GetOAuthAccessToken stored procedure. |
ManageAudienceUsers | Add, update and remove users from a given custom audience id. |