Last active
October 4, 2023 02:45
-
-
Save kyouheicf/f302607ee65eabf7a1525ed56efaed23 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
async fetch(request, env, ctx) { | |
const init = { | |
headers: { | |
"content-type": "text/html;charset=UTF-8", | |
}, | |
}; | |
const url = "https://www.qbhouse.co.jp/search/488" | |
const response = await fetch(url, init); | |
return await response.text(); | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment