forked from friendica/deprecated-addons
26 lines
1.3 KiB
PHP
26 lines
1.3 KiB
PHP
<?php
|
||
|
||
// change these values to your own in order to use EZAppDotNet
|
||
$app_clientId = 'js4qF6UN4fwXTK87Ax9Bjf3DhEQuK5hA';
|
||
$app_clientSecret = 'Z4hsLHh82d5cQAwNVD2uZtNg3WqFxLXF';
|
||
|
||
// this must be one of the URLs defined in your App.net application settings
|
||
$app_redirectUri = 'https://pirati.ca/addon/appnetpost/appnet.php';
|
||
|
||
// An array of permissions you're requesting from the user.
|
||
// As a general rule you should only request permissions you need for your app.
|
||
// By default all permissions are commented out, meaning you'll have access
|
||
// to their basic profile only. Uncomment the ones you need.
|
||
$app_scope = array(
|
||
'basic', // See basic user info (default, required: may be given if not specified)
|
||
'stream', // Read the user's personalized stream
|
||
// 'email', // Access the user's email address
|
||
'write_post', // Post on behalf of the user
|
||
// 'follow', // Follow and unfollow other users
|
||
'public_messages', // Send and receive public messages as this user
|
||
'messages', // Send and receive public and private messages as this user
|
||
// 'update_profile', // Update a user’s name, images, and other profile information
|
||
// 'files', // Manage a user’s files. This is not needed for uploading files.
|
||
// 'export', // Export all user data (shows a warning)
|
||
);
|