Tweetinvi

First steps

  • Getting Started
  • Basic Concepts

Credentials

  • Credentials
  • Rate Limits Handlers
  • Rate Limits API

Twitter API - v1.1

  • Tweets
  • Timelines
  • Users
  • Followers, Friends and Relationships
  • Messages
  • Search
  • Lists
  • Direct API calls
  • Media Upload
  • Iterators
  • Trends
    • Searches
    • Locations
  • Help

Twitter API - v2

  • Basics of API V2
  • Tweets V2
  • Users V2
  • Search V2

Authentication

  • Introduction to Authentication
  • URL Redirect Authentication
  • PIN based Authentication

Account Activity

  • Account Activity
  • Account Activity - AspNet
  • Account Activity - HttpServer
  • Account Activity - Subscriptions
  • Account Activity - Stream/Events

Streams V1.1

  • Streams Introduction
  • Tweet Stream
  • Sample Stream
  • Filtered Streams
  • Filtered Stream - Filters
  • Labs Sample Stream
  • Labs Filtered Stream

Streams V2

  • Sample Stream V2

Twitter Client

  • Twitter Client
  • Twitter Client - Events
  • Json - Serialize/Deserialize

Releases

  • Releases

More

  • Exceptions
  • Twitter Labs
  • Extended Tweets
  • Parameters Validators
  • Tweetinvi Container
  • License
  • Help and Feedback
Tweetinvi
  • »
  • Trends

Trends¶

Trends give you information about what is currently popular on Twitter.

Searches¶

Get trending searches based on location defined via Woeid

var worldwideWoeid = 1;
var trendingSearches = await userClient.Trends.GetPlaceTrendsAtAsync(new GetTrendsAtParameters(worldwideWoeid));

Locations¶

Get the locations that Twitter has trending topic information for.

// Get general trending locations
var trendingLocations = await userClient.Trends.GetTrendLocationsAsync();

// Get trending location close to a specific location
var newYorkCoordinates = new Coordinates(40.785091, -73.968285);
var trendingLocations = await userClient.Trends.GetTrendsLocationCloseToAsync(newYorkCoordinates);
Next Previous

© Copyright 2020, linvi

Built with Sphinx using a theme provided by Read the Docs.