diff default/assets/vendors/theme-widgets/vendor/mute/facebook/example/debugging-access-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/debugging-access-tokens.php	Sat May 31 09:21:51 2025 +0800
@@ -0,0 +1,26 @@
+<?php
+
+/**
+ * Shows how to exchange a short lived access token to a long one.
+ *
+ * @author Xavier Barbosa
+ * @since 13 February, 2013
+ * @link https://developers.facebook.com/docs/howtos/login/extending-tokens/
+ **/
+
+use Mute\Facebook\App;
+
+/**
+ * Default params
+ **/
+
+$app_id = "YOUR_APP_ID";
+$app_secret = "YOUR_APP_SECRET";
+$access_token = 'YOUR_PREVIOUS_TOKEN';
+
+/**
+ * The process
+ **/
+
+$app = new App($app_id, $app_secret);
+$new_access_token = $app->getOAuth()->exchangeAccessToken($access_token);