ニコニコ動画の試聴URLからTwitte向けのサムネイル画像のURLを取得するAPI
ニコニコ動画の試聴URLからTwitte向けのサムネイル画像のURLを取得するAPI
lambdaにデプロイしたコード
code:hello.ts
import {
APIGatewayProxyEventV2,
APIGatewayProxyResultV2,
Context,
import {
DOMParser,
Element,
async function getThumUrlAndTitle(url: string): Promise<string[]> {
const res = await fetch(url);
const doc = new DOMParser().parseFromString(await res.text(), "text/html");
if (doc == null) {
throw new Error("document not found");
}
const thumbUrl = node.getAttribute("content");
if (thumbUrl == null) {
throw new Error("thumbnailUrl not found");
}
// タイトルがないことはない
const titleNode = doc.querySelectorAll('head > title')0 as Element; }
// deno-lint-ignore require-await
export async function handler(
_event: APIGatewayProxyEventV2,
_context: Context,
): Promise<APIGatewayProxyResultV2> {
return {
statusCode: 200,
headers: { "content-type": "application/json;charset=utf8" },
body: JSON.stringify({
"thumbnailUrl": ${thumbnailUrl},
"title": ${title}
}),
};
}