2022-11-04 15:23:31 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Mastodon Token
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| When syndicating posts to Mastodon using Brid.gy’s Micropub endpoint, we
|
|
|
|
|
| need to provide an access token. This token can be generated by going to
|
|
|
|
|
| https://brid.gy/mastodon and clicking the “Get token” button.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'mastodon_token' => env('BRIDGY_MASTODON_TOKEN'),
|
|
|
|
|
|
2024-03-23 21:19:54 +00:00
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Bluesky Token
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| When syndicating posts to Bluesky using Brid.gy’s Micropub endpoint, we
|
|
|
|
|
| need to provide an access token. This token can be generated by going to
|
|
|
|
|
| https://brid.gy/bluesky and clicking the “Get token” button.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'bluesky_token' => env('BRIDGY_BLUESKY_TOKEN'),
|
|
|
|
|
|
2022-11-04 15:23:31 +00:00
|
|
|
|
];
|