matchUserBioLocation method

LogicalChannel matchUserBioLocation(
  1. String value
)
inherited

Matches Tweets that are published by users whose location contains the specified keyword or phrase. This operator performs a tokenized match, similar to the normal keyword rules on the message body.

This location is part of the User object, matches on the 'location' field, and is a non-normalized, user-generated, free-form string. It is also different from a Tweet's location (see matchPlace).

Parameters

  • value: User bio location to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchUserBioLocation(final String value) =>
    _buffer.appendOperator(
      _standaloneOperation.createUserBioLocation(value),
    );