pocketapi (version 0.1)

pocket_delete: pocket_delete

Description

delete items from your Pocket list.

Usage

pocket_delete(
  item_ids,
  consumer_key = Sys.getenv("POCKET_CONSUMER_KEY"),
  access_token = Sys.getenv("POCKET_ACCESS_TOKEN")
)

Arguments

item_ids

character vector. Pocket item ids you want to delete from your list.

consumer_key

character. Your Pocket consumer key. Defaults to Sys.getenv("POCKET_CONSUMER_KEY").

access_token

character. Your Pocket request token. Defaults to Sys.getenv("POCKET_ACCESS_TOKEN").

Value

Invisibly returns a list containing information on whether the action failed or succeeded, including the respective item ID.

Details

This function uses the modify endpoint of the Pocket API which exhibits some weird behaviour. For example, even if a `modify` action is not successful, the API will still return "success". See [issue [#26](https://github.com/CorrelAid/pocketapi/issues/26) for a discussion.