Twitter Digits for web - 如何在可嵌入小部件中设置默认国家/地区

Twitter Digits for web - How to set default country in embeddable widget

我想在网络版 Twitter Digits 中将我的默认国家/地区设置为 +92。这可以在按钮单击事件上完成。但我不希望它点击按钮。

function onLoginButtonClick(event){
  Digits.logIn({
    phoneNumber: '+92'
  })
    .done(onLogin) /*handle the response*/
    .fail(onLoginFailure);
}

我想显示带有默认国家/地区的可嵌入小部件。任何可能的解决方案?

经过几天的搜索。我从 twittercommunity 中得出 phoneNumber: '+92'accountFieldstheme 可以传递给嵌入函数

Digits.embed({
  container: '#my-digits-container',
  theme: {
   /* Input fields borders */
  },
  phoneNumber: '+92',
  accountFields: Digits.AccountFields.Email
})
.done(onLogin) /*handle the response*/
    .fail(onLoginFailure);
  };