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
1 answer
Giphy API in Discord Bot async function
I started to program a Discord-Bot, he hasn't that much functions at the moment. So at the moment im working on the command "!gif", so I type that command with an word (here it is "spider"), as a reponse I get a gif with a Spider-Tag.
So here is my…

jive
- 15
- 1
- 5
0
votes
1 answer
HUBOT Coffescript - JSON obejct
Wondering if anyone can help me with this - pretty much novice in scripting and not sure if I'm doing it right. I need to get an object from this JSON string and it keeps giving me "undefined" error.
Here's the JSON:
`
{ data:
[ { type:…

Samir Shah
- 3
- 1
0
votes
1 answer
I want to run a GIPHY or similar in an outlook email
I would like to run a GIPHY in an outlook email, which automatically starts when the user opens the email in their inbox.
Currently this is not possible in outlook 2013 as Microsoft disabled the functionality (They now use word as a text editor…

dhali
- 386
- 1
- 6
- 27
0
votes
1 answer
Object from GIPHY API prints nothing
I'm using angular 2 to get some data from GIPHY API.
export class ListaGifsComponent {
gifs : Object[] = [];
urlBase = "http://api.giphy.com/v1/gifs/search?q=";
termoPesquisado = "ryan+gosling";
key =…

fabiomf
- 205
- 3
- 8
0
votes
1 answer
Invalid-Content-Type error when trying to send GIF through Twilio SMS
I have this bit of code to send an MMS message with a GIF. (using Ruby with Sinatra, hosted on Heroku).
client.messages.create(
to: to,
from: phone,
body: message,
media_url: 'http://media.giphy.com/media/zl170rmVMCpEY/giphy.gif'
)
It…
user5744666
0
votes
1 answer
passing search query from main activity to fragment
I am building an android app for gif search using GIPHYAPI, which contains multiple fragments and a search menu. whenever I am trying to pass query it gives error like "Attempt to read from null array".
Following is my mainactivity.java
public…

Kalpesh Jagada
- 1
- 1
0
votes
3 answers
How do I save a GIF from a url?
I'm using Giphypop to retrieve the url of a gif. I saved this url in a variable for convenience, but now I need to somehow save the gif to file. But I'm getting an error.
I think this can be reopened. My problem is Windows not opening the gif file…

whatwhatwhat
- 1,991
- 4
- 31
- 50
0
votes
1 answer
How can I return sentiment value from Tweepy class and Pass it to Giphy API
I'm using the tweepy API and want to return the data found, pass it to the Giphy API function and use it as a query for the giphy search.
class TweetStreamListener(StreamListener):
# on success
def on_data(self, data):
# decode json
…

godspeed
- 1
- 1
0
votes
1 answer
Invoke giphy search in slack nestor bot reply
The giphy plugin is in use in a Slack channel, would it be possible for the nestor bot reply to have a giphy search invoked by something like msg.reply('/giphy ' + text, done);

Dilemmat_Dag
- 383
- 1
- 4
- 14
0
votes
1 answer
Show a new GIF on each page visit or page reload
I'm using the GIPHY api to display an image based on a query. Below is the code I'm currently using to pull the image. It works but the problem right now is that each time you visit the website it shows the same GIF every visit until the query…

Aaron
- 71
- 1
- 8
0
votes
1 answer
How to display images from Giphy in javascript
The code bellow is pulling data from Giphy. I am trying to let the user search a term and display the images on the page. I currently have one image displaying and it is creating a cookie trail of buttons that allow the user to go back and click…

Jason Martocci
- 119
- 1
- 3
- 14
0
votes
2 answers
How does giphy enable playback of animated gifs on facebook
I'm fairly certain that I know how magnets work, but I am intrigued as to how http://giphy.com/ managed to get animated gif's to work on Facebook. Does anyone have a clue as to how this is done? Is it mime-type substitution or some undocumented…

Paul Gregoire
- 9,715
- 11
- 67
- 131
0
votes
1 answer
Reading the JSON response from the Giphy
I am trying to read the results from a $.getJSON() request.
The results are here...
http://api.giphy.com/v1/gifs/search?q=funny+cat&api_key=dc6zaTOxFJmzC&limit=1&offset=0
I am trying to get the value of bitly_gif_url using
$.each(data,…

AttikAttak
- 797
- 4
- 12
- 20
-1
votes
1 answer
GIPHY Favorites to Google Sheets?
Does anyone know of a way to import GIPHY Favorites into Google Sheets? I hate the fact that I can't share my favorites with anyone else, and that they're completely private. Wondering if there's a way to use the GIPHY API to import all of them into…

user14915635
- 365
- 2
- 9
-1
votes
1 answer
String indices must be integers Giphy
I'm trying to get url from object data, but it isn't right. This program has stopped on line 4. Code is under.
My code:
import requests
gifs = str(requests.get("https://api.giphy.com/v1/gifs/random?
api_key=APIKEY"))
dump =…

MRmlik12 A
- 1
- 3