Before you begin
Create a Tenor app
Sign up at Tenor and create a new app.
Extension settings
Open your CometChat app
Login to CometChat and select your app.
How does it work?
This extension uses thecallExtension method provided by the CometChat SDK. You can perform the following actions using this method:
- Get trending GIFs: Fetch a curated list of trending GIFs.
- Search for GIFs: Search GIFs by keywords and language.
Get Trending GIFs
To list and show the most trending GIFs on Tenor, all you have to do is include the following parameters in your request.| key | Value | Description |
|---|---|---|
| offset | number | Since you can get paginated results for trending GIFs, you can provide an offset and fetch results accordingly |
| limit | number | The number of Trending GIFs that you want to fetch |
- JavaScript
- Java
- Swift
Search for GIFs
Apart from listing the trending ones, the extension also allows searching for a particular GIF using the following parameters:| key | value | Description |
|---|---|---|
| offset | number | Since you can get paginated results for searches, you can provide an offset and fetch results accordingly. |
| limit | number | The number of GIFs that you want to fetch as part of the search. |
| lang | 2-letter ISO 639-1 language identifier | (Optional) Defaults to en. (Example values: es, fr, it.) |
| query | string | Search term |
- JavaScript
- Java
- Swift