diff default/assets/vendors/theme-widgets/vendor/mute/facebook/example/extending-tokens.php @ 0:1d038bc9b3d2 default tip

Up:default
author Liny <dev@neowd.com>
date Sat, 31 May 2025 09:21:51 +0800
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/default/assets/vendors/theme-widgets/vendor/mute/facebook/example/extending-tokens.php	Sat May 31 09:21:51 2025 +0800
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * Debugging Access Tokens and Handling Errors
+ *
+ * In most cases when an app receives an Access Token, it will also receive an
+ * expires parameter which indicates when you can expect that token to expire.
+ * However, there are several events which can cause an access token to become
+ * invalid before its expected expiry time. Examples include: when a user
+ * changes their password, when a user de-authorizes an application, or when an
+ * App's Secret is reset.
+ *
+ * @author Xavier Barbosa
+ * @since 13 February, 2013
+ * @link https://developers.facebook.com/docs/howtos/login/debugging-access-tokens/
+ **/
+
+use Mute\Facebook\App;
+
+/**
+ * Default params
+ **/
+
+$app_id = "YOUR_APP_ID";
+$app_secret = "YOUR_APP_SECRET";
+$access_token = 'TOKEN_TO_DEBUG';
+
+/**
+ * The process
+ **/
+
+$app = new App($app_id, $app_secret);
+$response = $app->get('debug_token', array('input_token' => $access_token));
+
+var_dump($response);