Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 527 Bytes

File metadata and controls

23 lines (19 loc) · 527 Bytes
using System;
using System.Collections.Generic;
using XapiScraper;
using XapiScraper.Models.Components;

var sdk = new XapiScraperSDK(
    bearerAuth: Environment.GetEnvironmentVariable("X_API_SCRAPER_KEY")
);

var req = new AdvancedSearchCursorQuery()
{
    SearchTerms = new List<string>() { "from:elonmusk" },
    SortBy = "Latest",
    NextCursor = "",
};

var res = await sdk.Search.AdvancedAsync(req);

Console.WriteLine(res);