mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: unsplash api fix (#2310)
This commit is contained in:
parent
4cab00ec79
commit
843ba5bb63
@ -4,19 +4,23 @@ import type { NextApiRequest, NextApiResponse } from "next";
|
|||||||
const unsplashKey = process.env.UNSPLASH_ACCESS_KEY;
|
const unsplashKey = process.env.UNSPLASH_ACCESS_KEY;
|
||||||
|
|
||||||
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
||||||
const { query, page, per_page = 20 } = req.query;
|
try {
|
||||||
|
const { query, page, per_page = 20 } = req.query;
|
||||||
|
|
||||||
const url = query
|
const url = query
|
||||||
? `https://api.unsplash.com/search/photos/?client_id=${unsplashKey}&query=${query}&page=${page}&per_page=${per_page}`
|
? `https://api.unsplash.com/search/photos/?client_id=${unsplashKey}&query=${query}&page=${page}&per_page=${per_page}`
|
||||||
: `https://api.unsplash.com/photos/?client_id=${unsplashKey}&page=${page}&per_page=${per_page}`;
|
: `https://api.unsplash.com/photos/?client_id=${unsplashKey}&page=${page}&per_page=${per_page}`;
|
||||||
|
|
||||||
const response = await axios({
|
const response = await axios({
|
||||||
method: "GET",
|
method: "GET",
|
||||||
url,
|
url,
|
||||||
headers: {
|
headers: {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
res.status(200).json(response);
|
res.status(200).json(response?.data);
|
||||||
|
} catch (error) {
|
||||||
|
res.status(500).json({ message: "Failed to fetch unsplash", error });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user