connectapi
connectapi copied to clipboard
An R package for interacting with the RStudio Connect Server API
We recently hit redirect issues where `connectapi` would just hang on redirects. We should handle redirects more nicely @jspiewak
When retrieving job logs from rsconnect I encountered various errors when converting types - mainly: 1. Converting to list() type which is actually a character (of length 1) ``` Error...
I seem to be using connectapi more and more frequently: - Building adhoc admin scripts using connectapi directly - Building our CI/CD scripts using connectapi directly - Writing scripts, apps,...
I am hitting errors with the Variant methods that I suspect are due to bug(s). I have a variant "d": ``` > d RStudio Connect Content: Content GUID: cd3c03ba-38dc-44d1-946f-ec51d011f57d Content...
Can the documentation in places such as https://pkgs.rstudio.com/connectapi/reference/Content.html and https://pkgs.rstudio.com/connectapi/reference/set_schedule.html be enhanced to clarify what parameters can be passed to the various functions and methods? If the idea is that...
Looking at the articles on Posit support like https://support.posit.co/hc/en-us/articles/360007435274-Counting-Named-Users-in-Posit-Connect-and-Posit-Workbench-RStudio-Server-Pro, it would be useful to us to have connectapi equivalents. For example: ``` library(tidyverse) library(connectapi) client % # removes e.g. "Obsolete...
I'm going to echo https://github.com/rstudio/connectapi/issues/136 and say that I've found creating and setting tags to be difficult. I'll caveat and say that this is just my experience and I may...
In connectapi and the Connect API, the allowed roles when setting permissions are "viewer" or "owner" (i.e. `content_add_user(content, guid, role = c("viewer", "owner"))`). These roles map to "viewer" and "collaborator"...
r_versions are a factor not a numeric. So we should use a bar chart. The actual graphs look the same, but using a barchart removes the warning ``` Warning message:...
Many Connect API endpoints have optional filters for queries. Simplify `connectapi` queries by implementing these filters. `get_groups` - https://docs.rstudio.com/connect/api/#get-/v1/groups - parameter `prefix`: Filters groups by prefix (group name). non-existent `get_instrumentation`...