autodesk forge测试官网案例,后台报错

问题描述

初次练习forge,按照官网http://learnforge.autodesk.io...,选择的是java,在eclipse上运行的,都是按照官网上的步骤进行,当输入http://localhost:3000时,后台出现错误如下
get buckets & objects exception: java.lang.RuntimeException: Expected 200 but got 400, with body {"developerMessage":"The required parameter(s) client_id,client_secret not present in the request","userMessage":"","errorCode":"AUTH-008","more info":"http://developer.api.autodesk.com/documentation/v1/errors/AUTH-008"}
望大佬给解决下,谢谢。

阅读 1.8k
1 个回答

该错误是因为缺少获取Authorization Token(认证令牌)所需的APP Client ID和Secret,请按教程配置好创建的Forge应用的Client ID以及Secret:

public class config {
// set environment variables or hard-code here 
   public static class credentials{
      public static String client_id = System.getenv("FORGE_CLIENT_ID"); //替换为APP Client ID
      public static String client_secret = System.getenv("FORGE_CLIENT_SECRET"); //替换为APP Client Secret
   }; 

也可配置环境变量"FORGE_CLIENT_ID"和"FORGE_CLIENT_SECRET",详见:https://jingyan.baidu.com/art...

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题