mirror of
https://github.com/friendica/friendica
synced 2025-04-26 02:30:11 +00:00
Implement Twitter contact endpoints
- Implement /followers/ids - Implement /followers/list - Reimplement /friends/ids - Reimplement /friends/list - Update API reference - Remove obsolete tests
This commit is contained in:
parent
173264eaab
commit
7a5afc10bb
9 changed files with 422 additions and 155 deletions
|
@ -57,6 +57,10 @@ return [
|
|||
'/profile/show' => [Module\Api\Friendica\Profile\Show::class , [R::GET ]],
|
||||
'/events' => [Module\Api\Friendica\Events\Index::class , [R::GET ]],
|
||||
],
|
||||
'/followers/ids' => [Module\Api\Twitter\FollowersIds::class , [R::GET ]],
|
||||
'/followers/list' => [Module\Api\Twitter\FollowersList::class , [R::GET ]],
|
||||
'/friends/ids' => [Module\Api\Twitter\FriendsIds::class , [R::GET ]],
|
||||
'/friends/list' => [Module\Api\Twitter\FriendsList::class , [R::GET ]],
|
||||
],
|
||||
|
||||
'/admin' => [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue