Chilkat Online Tools

unicodeC / Twitter API v2 / Search Spaces by title

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW queryParams;
    HCkHttpResponseW resp;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_Create();

    queryParams = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(queryParams,L"query",L"");
    CkJsonObjectW_UpdateString(queryParams,L"state",L"");
    CkJsonObjectW_UpdateString(queryParams,L"space.fields",L"");
    CkJsonObjectW_UpdateString(queryParams,L"expansions",L"");
    CkJsonObjectW_UpdateString(queryParams,L"user.fields",L"");
    CkJsonObjectW_UpdateString(queryParams,L"topic.fields",L"");

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");

    resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://api.twitter.com/2/spaces/search",queryParams);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(queryParams);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(queryParams);

    }

Curl Command

curl -G -d "query="
	-d "state="
	-d "space.fields="
	-d "expansions="
	-d "user.fields="
	-d "topic.fields="
	-H "Authorization: Bearer <access_token>"
https://api.twitter.com/2/spaces/search

Postman Collection Item JSON

{
  "name": "Search Spaces by title",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://api.twitter.com/2/spaces/search?query=&state=&space.fields=&expansions=&user.fields&topic.fields",
      "protocol": "https",
      "host": [
        "api",
        "twitter",
        "com"
      ],
      "path": [
        "2",
        "spaces",
        "search"
      ],
      "query": [
        {
          "key": "query",
          "value": "",
          "description": "Required. A search term. Can be a keyword, hashtag, or mention."
        },
        {
          "key": "state",
          "value": "",
          "description": "Return only Spaces with a specific running status.\n\nAllowed values (specify only one of the following):\nlive,scheduled"
        },
        {
          "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": null,
          "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 Spaces matching the specified keyword query.\n\n[Sign up](https://t.co/signup) for the Twitter API"
  },
  "response": [
  ]
}