Skip to content

Commit

Permalink
Hopefully fix API problem with giphy search. Needs to be tested on IOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
theTyster committed Oct 25, 2023
1 parent 0b60988 commit 0c551ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/Giphy Search/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
$(
Expand Down

0 comments on commit 0c551ba

Please sign in to comment.