Skip to content

Commit 1a2aabe

Browse files
committed
Fix name resolution.
1 parent f5f7df8 commit 1a2aabe

4 files changed

+17
-5
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"genealabs/laravel-socialiter": "Automatic user resolution and persistence for any Laravel Socialite driver."
1717
},
1818
"require": {
19-
"illuminate/support": "^7.0",
19+
"illuminate/support": "^6.0|^7.0",
2020
"laravel/socialite": "dev-master@dev"
2121
},
2222
"require-dev": {

src/Providers/SignInWithAppleProvider.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,6 @@ protected function getUserByToken($token)
8585

8686
public function user()
8787
{
88-
// if ($this->hasInvalidState()) {
89-
// throw new InvalidStateException;
90-
// }
91-
9288
$response = $this->getAccessTokenResponse($this->getCode());
9389

9490
$user = $this->mapUserToObject($this->getUserByToken(
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[
2+
{
3+
"level": "SEVERE",
4+
"message": "http:\/\/127.0.0.1:8000\/favicon.ico - Failed to load resource: the server responded with a status of 404 (Not Found)",
5+
"source": "network",
6+
"timestamp": 1583082983760
7+
}
8+
]
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[
2+
{
3+
"level": "WARNING",
4+
"message": "https:\/\/appleid.cdn-apple.com\/appleauth\/static\/jsj\/2086116106\/profile\/app.js 254 Mixed Content: The page at 'https:\/\/appleid.apple.com\/auth\/authorize?client_id=dev.test.service-id&redirect_uri=http%3A%2F%2Ftesting.dev%2Fsiwa-callback&scope=name%20email&response_type=code&response_mode=form_post&state=DCCb1UiYHkFyhepDPSMCvHorrEQPIfQL4vD7dMZl' was loaded over a secure connection, but contains a form that targets an insecure endpoint 'http:\/\/testing.dev\/siwa-callback'. This endpoint should be made available over a secure connection.",
5+
"source": "security",
6+
"timestamp": 1583082984883
7+
}
8+
]

0 commit comments

Comments
 (0)