2017-05-17 5 views

答えて

0

あなたは、参照https://auth0.com/docs/libraries/custom-signup#custom-fields-limitationsについてsignup方法http://auth0.github.io/auth0.js/docs/global.html#signup

webAuth.signup({connection: 'Username-Password-Authentication' 
    , email : useremail, password : userpwd 
    , user_metadata : " 'First Name' : 'Tony' 
     , 'Last Name' : 'Stark'" 
    }, callback); 

ためuser_metadataオプションの一部として追加のメタデータを送信することができ、基礎となるAPIドキュメントはhere

をしています
関連する問題