Open selesnow opened 1 year ago
I haven't intentionally changed anything relating to user_params
. Can you give me something like: it works with gargle version X but not with version Y?
Unfortunately I don't remember which version it worked with.
Tell me, could you give an example code using the user_params argument in the token_fetch() function, and how then to access the passed user parameters in the cred object?
Now i try:
cred <- token_fetch(
scopes = 'https://www.googleapis.com/auth/adwords',
app = app,
email = 'x@gmail.com',
cache = TRUE,
user_params = list(developer_token = "xxxxxxxxxxx")
)
cred$params$user_params$developer_token
But is's doesn't works, cred$params$user_params is empty.
Hello, previosly i use next code:
And it worked correctly, but now
cred$params$user_params$developer_token
is empty, can you help me?How i need to use user_params argument?