forked from friendica/deprecated-addons
Removed many deprecated addons
This commit is contained in:
parent
8ea198a97e
commit
1b7283c72b
247 changed files with 28554 additions and 0 deletions
25
appnet/test/EZsettings.php
Normal file
25
appnet/test/EZsettings.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?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)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue