mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-23 07:19:28 -07:00
9 lines
218 B
PHP
9 lines
218 B
PHP
|
<?php
|
||
|
|
||
|
// Twitter API bearer code
|
||
|
// Documentation: https://developer.twitter.com/en/docs/basics/authentication/oauth-2-0
|
||
|
// Expected format: "Authorization: Bearer XXXXXXXXXXXXXXXXXXXXX"
|
||
|
$twitter_api_auth = NULL;
|
||
|
|
||
|
?>
|