forked from RSS-Bridge/rss-bridge
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
Vk2Bridge | ||
========= | ||
|
||
Работа этого скрипта основана [VK API](https://dev.vk.com/reference). | ||
По сравнению с VkBridge у этого скрипта есть свои приемущества и недостатки. | ||
|
||
Приемущества | ||
------------ | ||
|
||
- Стабильность. | ||
Скрипт не зависит от HTML-структуры страницы VK групп или пользователей, которые могут поменяться в любой момент. | ||
|
||
Недостатки | ||
---------- | ||
|
||
- Требуется наличие зарегистированного в ВК пользователя. | ||
Данный пользователь должен получить `access_token`, который используется для этого скрипта. | ||
Подробнее в разделе "Настройка" | ||
|
||
- Количество запросов при выключенном кэше ограничено - [5000 запросов в сутки](https://dev.vk.com/ru/reference/roadmap#%D0%9E%D0%B3%D1%80%D0%B0%D0%BD%D0%B8%D1%87%D0%B5%D0%BD%D0%B8%D1%8F%20API%20%D0%B4%D0%BB%D1%8F%20%D0%BF%D0%BE%D0%B8%D1%81%D0%BA%D0%B0) | ||
|
||
Настройка | ||
--------- | ||
|
||
1. Перейдите по [ссылке](https://oauth.vk.com/oauth/authorize?client_id=5149410&scope=offline&redirect_uri=https://oauth.vk.com/blank.html&display=page&response_type=token) | ||
|
||
2. Авторизуйтесь в приложение `my_personal_app` | ||
|
||
3. Получите ссылку вида `https://oauth.vk.com/blank.html#access_token=MNOGO_BUKAV&expires_in=0&user_id=123456`. | ||
Из этой ссылки скопируйте `MNOGO_BUKAV`. | ||
|
||
4. В `config.ini.php` в раздел Vk2Bridge вставьте `access_token` | ||
|
||
``` | ||
[Vk2Bridge] | ||
access_token = "MNOGO_BUKAV" | ||
``` | ||
|
||
Примечание: в данной инструкции используется приложение, администратор которого является [@em92](https://github.com/em92). | ||
Допускается вместо упомянутого приложения использование своего standalone-приложения. | ||
Для этого надо в ссылке из п.1. заменить значение `client_id` на свой. |