From 0c551ba1cbc15755c9c5b7670dc4dd4e0b9d2f69 Mon Sep 17 00:00:00 2001 From: thetyster Date: Wed, 25 Oct 2023 11:44:54 -0700 Subject: [PATCH] Hopefully fix API problem with giphy search. Needs to be tested on IOS. --- public/Giphy Search/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/Giphy Search/app.js b/public/Giphy Search/app.js index 3742dfc..09016e9 100644 --- a/public/Giphy Search/app.js +++ b/public/Giphy Search/app.js @@ -4,7 +4,7 @@ $("form").on("submit", async function (e) { const query = $("input").val(); let request = await axios .get( - `http://api.giphy.com/v1/gifs/search?q=${query}&api_key=MhAodEJIJxQMxW9XqxKjyXfNYdLoOIym`, + `https://api.giphy.com/v1/gifs/search?api_key=bRjODJuPyvav8xTfZFu5TVc0XHznI9qY&q=${query}&limit=25&offset=0&rating=g&lang=en&bundle=messaging_non_clips`, ) .catch(async (e) => { $(