https://github.com/backand/backand-ionic2-starterで Backand が提供する例から
サービスで確認できます ( https://github.com/backand/backand-ionic2-starter/blob/master/app/services/backandService.ts ):
urls:{
signup:string,
token:string,
requestResetPassword: string,
resetPassword: string,
changePassword: string,
socialLoginWithCode: string,
socialSignupWithCode: string,
socialLoginWithToken: string
} = {
signup: '/1/user/signup',
token: '/token',
requestResetPassword: '/1/user/requestResetPassword',
resetPassword: '/1/user/resetPassword',
changePassword: '/1/user/changePassword',
socialLoginWithCode: '/1/user/PROVIDER/code',
socialSignupWithCode: '/1/user/PROVIDER/signupCode',
socialLoginWithToken: '/1/user/PROVIDER/token'
};
だから私の推測では、socialLoginWithCode、socialSignupWithCode、または socialLoginWithToken、PROVIDER で宣言された文字列は、facebook、twitter、または google のいずれかである必要がありますが、ベスト プラクティスに従ってこれらのアドレスを指す関数をどのように実装すればよいでしょうか?