(url: string)
| 928 | } |
| 929 | |
| 930 | og(url: string) { |
| 931 | return this.get<OGAPIResponse>({ |
| 932 | url: 'og/', |
| 933 | qs: { url }, |
| 934 | token: this.getOrCreateToken(), |
| 935 | }); |
| 936 | } |
| 937 | |
| 938 | personalizedFeed(options: GetFeedOptions = {}) { |
| 939 | return this.get<PersonalizationFeedAPIResponse<StreamFeedGenerics>>({ |
no test coverage detected