mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 14:35:50 +08:00
20 lines
568 B
JavaScript
20 lines
568 B
JavaScript
const url = `${process.env.LANGFLOW_URL ?? ""}/api/v1/projects/download/${process.env.PROJECT_ID ?? ""}`;
|
|
|
|
const options = {
|
|
method: 'GET',
|
|
headers: {
|
|
"accept": `application/json`,
|
|
"x-api-key": `${process.env.LANGFLOW_API_KEY ?? ""}`,
|
|
},
|
|
};
|
|
|
|
fetch(url, options)
|
|
.then(async (response) => {
|
|
if (!response.ok) {
|
|
throw new Error(`HTTP ${response.status}`);
|
|
}
|
|
const data = await response.arrayBuffer();
|
|
console.log("Received binary response for langflow-project.zip", data.byteLength);
|
|
})
|
|
.catch((error) => console.error(error));
|