diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-05-24 14:41:21 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-05-24 14:41:21 -0700 |
commit | 3f82ec2f757c62c25a31b461e0a0cddc14886117 (patch) | |
tree | 8eb85c7f356df87f2bf477a54c7ab521002492a1 /views/auth_callback.php |
Working app! Copied signin logic from OwnYourGram. New "post" interface for writing a simple text post. Also supports browser geolocation.
Diffstat (limited to 'views/auth_callback.php')
-rw-r--r-- | views/auth_callback.php | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/views/auth_callback.php b/views/auth_callback.php new file mode 100644 index 0000000..44c2daa --- /dev/null +++ b/views/auth_callback.php @@ -0,0 +1,68 @@ +<?php if($this->tokenEndpoint): ?> + + <?php if(!$this->auth): ?> + + <h3>Bad response from token endpoint</h3> + <p>Your token endpoint returned a response that was not understood.</p> + + <?php else: ?> + + <?php if(k($this->auth, 'error')): ?> + + <h3>Error</h3> + <p>Got an error response from the token endpoint:</p> + <div class="bs-callout bs-callout-danger"> + <h4><?= $this->auth['error'] ?></h4> + <?= k($this->auth, 'error_description') ? ('<p>'.$this->auth['error_description'].'</p>') : '' ?> + </div> + + <?php else: ?> + + <!-- Check for all the required parts of the token --> + <?php if(k($this->auth, array('me','access_token','scope'))): ?> + + <h3>Success!</h3> + + <p>All required values were found! You are now signed in.</p> + <p><a href="/new" class="btn btn-primary">Continue</a></p> + + <?php else: ?> + + <?php if(!k($this->auth, 'access_token')): ?> + <h4>Missing <code>access_token</code></h4> + <p>The token endpoint did not return an access token. The <code>access_token</code> parameter is the token the client will use to make requests to the Micropub endpoint.</p> + <?php endif; ?> + + <?php if(!k($this->auth, 'me')): ?> + <h4>Missing <code>me</code></h4> + <p>The token endpoint did not return a "me" parameter. The <code>me</code> parameter lets this client know what user the token is for.</p> + <?php endif; ?> + + <?php if(!k($this->auth, 'scope')): ?> + <h4>Missing <code>scope</code></h4> + <p>The token endpoint did not return a "scope" parameter. The <code>scope</code> parameter lets this client what permission the token represents.</p> + <?php endif; ?> + + <?php endif; ?> + + <?php endif; ?> + <?php endif; ?> + + + <h3>Token endpoint response</h3> + + <p>Below is the raw response from your token endpoint (<?= $this->tokenEndpoint ?>):</p> + <div class="bs-callout bs-callout-info pre"> + <?= $this->curl_error ?> + <?= htmlspecialchars($this->response) ?> + </div> + + +<?php else: ?> + + + <h3>Error</h3> + <p>Could not find your token endpoint. We found it last time, so double check nothing on your website has changed in the mean time.</p> + + +<?php endif; ?> |