-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Как реализовать метод execute? #76
Comments
Аналогичный вопрос интересует |
Все еще актуальный вопрос... |
+1 |
Короче. Разобрался... На примере получения товаров из Маркета some.php
Далее идем в https://vk.com/apps?act=manage
Содержимое:
В конце с помощью return отправляем в наш php json Дублирую процедуру без комментов:
|
Все элементарно просто, $accessToken это access_token, а $code - код процедуры соотвественно. $client = new VK\Client\VKApiClient();
$accessToken = '***';
$code = '***';
$response = $client->getRequest()->post('execute', $accessToken, ['code' => $code]); |
Не особо хорошее решение, учитывая то, что здесь никак не используется SDK, и получается 2 точки входа соответственно. |
Как реализовать метод execute?
The text was updated successfully, but these errors were encountered: