Google аутентификация с использованием Google Clous Vision API в R - PullRequest
0 голосов
/ 27 февраля 2019

В данный момент я пытаюсь использовать функцию распознавания изображений с помощью Google Cloud Vision API в R. Это работает до авторизации, но я получил эту ошибку:

> c <- fromJSON(file.choose())
> options("googleAuthR.client_id" = c$installed$client_id)
> options("googleAuthR.client_secret" = c$installed$client_secret)
> options("googleAuthR.scopes.selected" = 
+           c("https://www.googleapis.com/auth/cloud-platform"))
> googleAuthR::gar_auth()



  Waiting for authentication in browser...
    Press Esc/Ctrl + C to abort
    Authentication complete.
    Error in oauth2.0_access_token(endpoint, app, code = code, user_params = user_params,  : 
      Unauthorized (HTTP 401). Failed to get an access token.

> 
>Label Detection
> 
> 
> p <- getGoogleVisionResponse(file.choose(), 
+                              feature = "LABEL_DETECTION")

2019-02-27 12:24:43> No authorization yet in this session!
2019-02-27 12:24:43> NOTE: a  .httr-oauth  file exists in current working directory.
 Run authentication function to use the credentials cached for this session.
Error: Invalid token

Кто-то знает, что, возможно, идетнеправильно?В облачной консоли я активировал Google Vision API.

...