@@ -33,7 +33,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
33
33
34
34
1 . Install the composer package:
35
35
``` sh
36
- composer require genealabs /laravel-sign-in-with-apple
36
+ composer require mikebronner /laravel-sign-in-with-apple
37
37
```
38
38
39
39
We also recommend using [geneaLabs/laravel-socialiter](https://github.com/GeneaLabs/laravel-socialiter)
@@ -66,7 +66,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
66
66
upload it to https://example.com/.well-known/apple-developer-domain-association.txt, and then click the " Verify"
67
67
button.
68
68
3. Create a ` Private Key` for your website (https://developer.apple.com/account/resources/authkeys/list) with the following details:
69
- - Key Name:
69
+ - Key Name:
70
70
- Check " Sign In With Apple"
71
71
- Configure " Sign In With Apple" :
72
72
- Primary App ID: (select the primary app id created in step 1)
@@ -80,7 +80,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
80
80
```sh
81
81
sudo gem install jwt
82
82
```
83
-
83
+
84
84
- Create a file called `client_secret.rb` to process the private key:
85
85
```ruby
86
86
require ' jwt'
@@ -122,7 +122,7 @@ We thank the following sponsors for their generosity, please take a moment to ch
122
122
```sh
123
123
ruby client_secret.rb
124
124
```
125
-
125
+
126
126
5. Set the necessary environment variables in your `.env` file:
127
127
128
128
```env
@@ -184,7 +184,7 @@ class AppleSigninController extends Controller
184
184
// get abstract user object, not persisted
185
185
$user = Socialite::driver("sign-in-with-apple")
186
186
->user();
187
-
187
+
188
188
// or use Socialiter to automatically manage user resolution and persistence
189
189
$user = Socialiter::driver("sign-in-with-apple")
190
190
->login();
0 commit comments