Hi everyone,
I am trying to recieve a "pin" from the pins
package. I have already successfully registered a board on github. The corresponding repository is a private github repository. I am now trying to recieve the "pin" with the following code:
library(pins)
board_register_github(repo = "owner/repo")
pin_get("data_meas", board = "github", cache = FALSE)
There was no issue to upload the data with the pin
function.
But the last row gives me the following error message:
Error in pin_download(file_url, name, board$name, headers = headers) :
Client error: (404) Not Found. Failed to download remote file: https://github.com/owner/repo/releases/download/data_meas-eaf3cb6/data.csv
If I open the link in my browser, I can download the csv file without problems.
Does anyone know whats the problem here?
Thank you very much for your help!