Autodesk Forge 获取访问令牌
Autodesk Forge get access token
能否帮助我了解我输入的错误内容以创建 读写 令牌。为了安全起见,我的客户端 ID 和客户端密码中的类型为零,所以我知道这不是问题所在。如果你能给我一个清晰的例子,那会很有帮助。我被困了一段时间。 Autodesk 示例只有一个读取示例。
curl -v 'https://developer.api.autodesk.com/authentication/v1/authenticate'
-X 'POST'
-H 'Content-Type: application/x-www-form-urlencoded'
-d 'client_id=00000000000000000000000000000000&
client_secret=0000000000000000&
grant_type=client_credentials&
scope=data:read, data:write, bucket:create, bucket:read'
您需要将“,”替换为“%20”。这是因为您说数据是 x-www-form-urlencoded。
curl -v 'https://developer.api.autodesk.com/authentication/v1/authenticate'
-X 'POST'
-H 'Content-Type: application/x-www-form-urlencoded'
-d 'client_id=00000000000000000000000000000000&
client_secret=0000000000000000&
grant_type=client_credentials&
scope=data:read%20data:write%20bucket:create%20bucket:read'
能否帮助我了解我输入的错误内容以创建 读写 令牌。为了安全起见,我的客户端 ID 和客户端密码中的类型为零,所以我知道这不是问题所在。如果你能给我一个清晰的例子,那会很有帮助。我被困了一段时间。 Autodesk 示例只有一个读取示例。
curl -v 'https://developer.api.autodesk.com/authentication/v1/authenticate'
-X 'POST'
-H 'Content-Type: application/x-www-form-urlencoded'
-d 'client_id=00000000000000000000000000000000&
client_secret=0000000000000000&
grant_type=client_credentials&
scope=data:read, data:write, bucket:create, bucket:read'
您需要将“,”替换为“%20”。这是因为您说数据是 x-www-form-urlencoded。
curl -v 'https://developer.api.autodesk.com/authentication/v1/authenticate' -X 'POST' -H 'Content-Type: application/x-www-form-urlencoded' -d 'client_id=00000000000000000000000000000000& client_secret=0000000000000000& grant_type=client_credentials& scope=data:read%20data:write%20bucket:create%20bucket:read'