Skip to content

Commit

Permalink
Merge pull request #3 from theTyster/dev
Browse files Browse the repository at this point in the history
Hopefully fix API problem with giphy search.
  • Loading branch information
theTyster authored Oct 25, 2023
2 parents 85e8b43 + 0c551ba commit 63203e4
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 63203e4

Please sign in to comment.