从podio Java API中的类别字段获取选项值

时间:2019-02-28 05:47:03

标签: podio java-api

我有一个带有类别字段和其中一些选项值的Podio应用。我想使用PodioJava API获取所有类别选项值。 有没有办法得到它? My podio app

1 个答案:

答案 0 :(得分:3)

您将通过向async signUp(name: string, email: string, password: string): Promise<void> { try { const user: firebase.auth.UserCredential = await this.afAuth.auth.createUserWithEmailAndPassword(email, password); const userProfileDocument: AngularFirestoreDocument<UserProfile> = this.fireStore.doc(`userProfiles/${user.user.uid}`); const userProfile: UserProfile = { id: user.user.uid, email: email, creationTime: firebase.firestore.Timestamp, name: name }; await userProfileDocument.set(userProfile); } catch (error) { } } 端点调用GET请求来获取Podio应用程序配置。

请参阅Podio API文档here

您也可以在该文档页面上的沙箱中尝试此操作。