Interface GetWebPageInstantView

Returns an instant view version of a web page if available. This is an offline request if only_local is true. Returns a 404 error if the web page has no instant view page. Request type for Tdjson#getWebPageInstantView.

interface GetWebPageInstantView {
    @type: "getWebPageInstantView";
    only_local?: boolean;
    url: string;
}

Properties

Properties

@type: "getWebPageInstantView"
only_local?: boolean

Pass true to get only locally available information without sending network requests.

url: string

The web page URL.