SQL Server / Twitter API v2 / Lookup Spaces created by one or more users
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
DECLARE @queryParams int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @queryParams OUT
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'user_ids', ''
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'space.fields', ''
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'expansions', ''
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'user.fields', ''
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'topic.fields', ''
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
DECLARE @resp int
EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://api.twitter.com/2/spaces/by/creator_id', @queryParams
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
END
GO
Curl Command
curl -G -d "user_ids="
-d "space.fields="
-d "expansions="
-d "user.fields="
-d "topic.fields="
-H "Authorization: Bearer <access_token>"
https://api.twitter.com/2/spaces/by/creator_id
Postman Collection Item JSON
{
"name": "Lookup Spaces created by one or more users",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "",
"type": "string"
}
]
},
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.twitter.com/2/spaces/by/creator_id?user_ids=&space.fields=&expansions=&user.fields=&topic.fields",
"protocol": "https",
"host": [
"api",
"twitter",
"com"
],
"path": [
"2",
"spaces",
"by",
"creator_id"
],
"query": [
{
"key": "user_ids",
"value": "",
"description": "Required. A comma-separated list of user IDs. You can specify up 100 IDs in a single request."
},
{
"key": "space.fields",
"value": "",
"description": "Comma-separated list of fields from the Space object you want to return from your request.\n\nAvailable fields:\nhost_ids,created_at,creator_id,id,lang,invited_user_ids, participant_count,speaker_ids,started_at,state,title,updated_at, scheduled_start,is_ticketed,ended_at,topic_ids\n\nDefault fields:\nid,state"
},
{
"key": "expansions",
"value": "",
"description": "Comma-separated list of fields to expand. Expansions enable requests to expand an ID into a full object in the includes response object.\n\nAvailable values:\ninvited_user_ids,speaker_ids,creator_id,host_ids"
},
{
"key": "user.fields",
"value": "",
"description": "Comma-separated list of fields to expand. Expansions enable requests to expand an ID into a full object in the includes response object.\n\nAvailable values:\ncreated_at,description,entities,id,location,name,pinned_tweet_id,profile_image_url,protected,public_metrics,url,username,verified,withheld\n\nDefault values:\nid,name.username"
},
{
"key": "topic.fields",
"value": null,
"description": "Comma-separated list of fields from the Space Topics object you want to return from your request.\n\nAvailable values:\nid,name,description"
}
]
},
"description": "This endpoint returns information about a user. Specify user by username.\n\n[Sign up](https://t.co/signup) for the Twitter API"
},
"response": [
]
}