我有一个带有类别字段和其中一些选项值的Podio
应用。我想使用Podio
从Java API
获取所有类别选项值。
有没有办法得到它?
My podio app
答案 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
您也可以在该文档页面上的沙箱中尝试此操作。