Retrieving information about pins

I'm trying to retrieve information about pins. I'm using the following commands:

p = pins::pin_find(board = "rsconnect")
pins::pin_info(p$name[1])
pins::pin_info(p$name[2])

So retrieving information about pin 1 works, but pin 2 doesn't. The simple reason is I don't have access to pin 2.

Questions

  1. It seems odd security wise that I can view the pin names of pins I can't access.
  2. How can I view the information of the pins, i.e. is there some sort of pin super user.

Can't resist sharing this unhelpful information:

Pins are not just for holding pieces of cloth together. At least in Ankh-Morpork pins are something worth collecting. In this city over twenty-seven million pins are produced per year by the combined workshops called pinneries. Among them are specials like wax-headed, steels, or silver-headed. Lapel pins, or blazons , do not count since they are not true pins. Mere needles are looked down upon as just faux-pins with a hole knocked through one end. Nails cause strife: Dave refuses to have them in the shop, citing as his reason the fact that some collectors are young boys, thank you very much. The collectors of pins call themselves pinheads. A great number of magazines on pins exist with titles like Pins Monthly , Popular Needles , or Total Pins . The specialist shop to go to for all things acuphile is Dave's Pin Exchange, on Dolly Street. The collecting of pins has decreased greatly since the collecting of stamps has caught on. The details on pins are revealed in Going Postal

Currently pin_info() retrieves metadata stored inside the pin's contents and therefore, requires access to the pin.

There is a newly opened feature request in the pins package to allow admins to use pin_info() even when access to the pin's contents is not available. You can find it at https://github.com/rstudio/pins/issues/160, and follow progress on that GitHub issue.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.