最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

next.js - Trying to create vercel deployment through vercel rest api but get always get error: "incorrect_git_source_in

programmeradmin3浏览0评论

I have read the documentation, over and over and so I know the gitSource in the body is correct as it has all the required values of type, repoId and ref (I even tried with adding the sha too, which i fetch dynamically from github api)

I either get this error message: "The provided GitHub repository can't be found." or this message: "The provided GitHub repository does not contain the requested branch or commit reference. Please ensure the repository is not empty." - And i do not know why sometimes its one or the other even if the code is the same.

I know the ref is correct as the way i formatted it is how it comes back when I hit the github rest api - and the ID is correct as i've verified by looking at the source code on my github repo and seeing the id there (it is also fetched dynamically).

Here is the response code:

    const deploymentResponse = await fetch(`=${teamId}`, {
      method: "POST",
      headers: {
        Authorization: `Bearer ${vercelFullAccountApiToken}`,
        "Content-Type": "application/json"
      },
      body: JSON.stringify({
        name: branch,
        gitSource: {
          sha: gitBranchSha,
          type: "github",
          repoId: githubRepoIdString,
          ref: `refs/heads/${branch}`
        }
      })
    });

Can anyone see if there is an issue with the body or url and anything I missed?

(the sha is also fetched dynamically from said branch and is correct - although sha is not required so I can remove it and error is still same)

*the auth token I am using for vercel is scoped to full access for all accounts

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论