[ad_1]
Applied quave:accounts-apple as follows:
Meteor 1.10
init.js:
ServiceConfiguration.configurations.upsert(
{ service: "apple" },
{
$set: {
nativeClientId: "myappid#",
clientId: "com.mysiteurl",
teamId: "myteamid",
keyId: "mykeyid",
secret: "-----BEGIN PRIVATE KEY-----n ...textual content... n-----END PRIVATE KEY-----",
redirectUri: "https://mysiteurl.com:443/_oauth/apple",
scope: "namepercent20email",
responseMode: "form_post",
responseType: "code",
service: "apple",
loginStyle: "popup"
}
}
);
I additionally added the next as an occasion within the atForm:
'click on #at-apple': perform(){
Meteor.loginWithApple({
requestPermissions: ['name', 'email'],
});
}
however this
Meteor.loginWithApple
perform doesn’t appear to make a distinction a technique or one other.
Fb, Twitter, Google oauth work aok.
In Safari, this usually works okay (I can’t login efficiently, however I do get the popup and immediate with the proper wording for “register” vs “check in”):


However after working the construct command and opening the challenge in Xcode, after I run the app in Simulator, I get no popup upon urgent the button and the button reads “Configure Apple” solely. I did add “Check in with Apple” in Signing & Capabilities however undecided if extra configuration is required there?
Is the
Configure Apple
a clue as to what’s incorrect?
[ad_2]


