Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Article Suggestions

Tobias Klika edited this page Apr 5, 2019 · 1 revision

In PocketSharp v5 you can get suggestions for an article you have already saved in your pocket list:

IEnumerable<PocketItem> items = await _client.GetSuggestions(
  string itemId,
  int count = 3, 
  string languageCode = "en"
);
IEnumerable<PocketItem> items = await _client.GetSuggestions("1290187238", count: 5);
Clone this wiki locally