When I try to execute waypoint up without token I always get an error like below one. I never get authorization screen or url. Even after .waypoint folder removal,
[GET /sites][401] listSites default &{Code:0 Message:}
When there is explicitly defined site_id and access_token, the same error shown
[GET /sites/{site_id}][401] getSite default &{Code:0 Message:}
When I manually execute https://api.netlify.com/api/v1/sites/ with provided token I get successful response from netlify API. What I’m doing wrong?
Here is my configuration
project = "example"
app "landing" {
path = "./landing"
build {
use "files" {}
}
deploy {
use "netlify" {
access_token = "personal access token from netlify"
site_id = "app id from netlify website settings"
}
}
}