Giphy, an online repository of animated gifs with the option to make your own. For giphy API questions, use the tag [giphy-api].
Questions tagged [giphy]
77 questions
0
votes
5 answers
Error while indexing data from this.setState()
I am creating a GIF search web app with the GIPHY API and react.
After I fetch the data from the API, I can index the data console.log(json.data[0])
.then((json) => {
console.log(json.data[0]);
this.setState({ myGif: json });
});
But…

Jay Jay
- 33
- 8
0
votes
1 answer
Why do I have only 1 gif per page instead of multiple gifs?
I am new to jQuery and I am trying to figure out how I can get multiple gifs to show up on a page after typing in a keyword and clicking 'submit'. In my api key I thought setting the number for 'limit=10'(10 for example) is suppose to have 10 gifs…

Iroos
- 29
- 3
0
votes
1 answer
Giphy Dashboard data using api
I am trying to get GIPHY Dashboard data like :
Total GIF/ stickers Upload
GIF views
When I download/Export the data , the endpoint is:
https://giphy.com/api/v2/users/aggregations/?start_dt=2013-02-01&end_dt=2020-07-08&content_type=gif,sticker
I need…

Aashutosh Soni
- 95
- 1
- 9
0
votes
2 answers
Cannot get gifs with giphy using discord.js, making a bot
if (command === 'fetar') {
var deadline = new Date("apr 19, 2020 00:00:00").getTime();
var currentDate = new Date().getTime();
var remainingTime = deadline - currentDate;
var days = Math.floor(remainingTime / (1000 * 60 * 60 * 24));…

Chris Lewis
- 3
- 2
0
votes
1 answer
Giphy SDK does not work with proguard / r8 enabled
When opening DialogFragment Gif with proguard / r8 enabled, the following message appears: "OH NO! SOMETHING WENT WRONG". What should I configure to work normally?

Vitor Ferreira
- 1,075
- 1
- 14
- 28
0
votes
1 answer
How to get unlimited scroll in giphy api using jQuery & PHP?
I am looking for GIPHY scroll exactly like how FaceBook allows in create post. Currently scrolling down to bottom only displays a total of 25 GIFs. That is ok based on GIPHY API limits, however, it should continue to scroll but it does not. Below is…

Nirali Biniwale
- 627
- 5
- 16
0
votes
1 answer
GIPHY API returns the same results everytime
I have this problem that the GIPHY API always returns the same results. And I'm quite sure this is not because I somehow store the previous result and post it again and again. For example, I type in 'dog' and ask for 5 results .. I get 5 dog gifs,…

Harleston
- 31
- 5
0
votes
1 answer
Unable to show Giphy GIF in Discord chat using robot
I am using Javascript for my Discord bot to make a call to the Giphy Random API Endpoint. But the problem is when I try to get the bot to show the gif in Discord chat, it doesn't show anything. It's just a blank, it doesn't even show the gif URL.
I…

Jessica
- 1,083
- 2
- 12
- 27
0
votes
1 answer
How to assign onGifSelected?
I cannot figure out how to assign onGifSelected while using Java. https://developers.giphy.com/docs/sdk#android
I've created a button which shows the Giphy dialog correctly, but nothing happens when I choose a gif (I have to implement the…

john evangelou
- 1
- 1
0
votes
1 answer
How do I remove the scrollbar from this IFRAME code?
I wanted to embed a gif through giphy on the sidebar of my site, but it appears with scrollbars, which I want to get rid off. Can you please help?
Heres how it looks like (top right): https://www.cinemarvellous.com/
Here's the code:
0
votes
1 answer
Giphy android sdk returns no data on release build
The sample code from giphy's docs for getting trending gif is
/// Trending Gifs
client.trending(MediaType.gif, null, null, null, new
CompletionHandler() {
@Override
public void onComplete(ListMediaResponse result,…

Sp4Rx
- 1,498
- 3
- 20
- 37
0
votes
1 answer
Generating gifs based on a user input
I would like to generate gifs based on a user input. I can generate a single gif using the following code:
`
def getGif(request):
import time
import giphy_client
from giphy_client.rest import ApiException
from pprint import pprint
…

JBull
- 43
- 1
- 8
0
votes
1 answer
How would I use the GIPHY Python API with my discord bot?
From my understanding I can use this example from the GIPHY docs (https://gyazo.com/1b6c0094162a54fe49029f665badf8df) to open a url but I don't understand it too much. To add onto that, when I run this code I get the error:…

bb goly
- 13
- 1
- 4
0
votes
0 answers
how to Giphy video get Thumbnail image and Api integrate in android studio?
I have display search Giphy video thumbnail image in gridview and after this image click play.how to do get thumbnail image? how to Giphy API integration in Android Studio.
How to search video play in player?

rahul
- 87
- 2
- 8
0
votes
1 answer
Giphy API Call Returning Results out-of-order
I'm using an API call to Giphy to loop through a string array and return Gifs for each word in the string.
It's working, but the results are showing up out of order.
The beginning of the array is: "STATELY, PLUMP BUCK MULLIGAN CAME FROM THE…

Nick Tamburro
- 150
- 1
- 4
- 16