0

I am using the Heroku Build API as documented here.

In the source blob, I am providing the git url for the repository

"source_blob": {
  "url": "https://github.com/heroku/node-js-getting-started/archive/master.zip"
}

I am constantly seeing below error:

Unable to fetch source from:https://github.com/heroku/node-js-getting-started/archive/master.zip

Any one able to resolve this?

Simon Franzen
  • 2,628
  • 25
  • 34
RSharma
  • 120
  • 7

1 Answers1

1

Try it without .zip

"source_blob": { 
"url": "https://github.com/heroku/node-js-getting-started/archive/master"
}
Simon Franzen
  • 2,628
  • 25
  • 34