EVOLUTION-MANAGER
Edit File: check_me_following.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Check Me Following</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for check_me_following {spotifyr}"><tr><td>check_me_following {spotifyr}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Check Me Following</h2> <h3>Description</h3> <p>Check if the current user is following specific artists or users. </p> <h3>Usage</h3> <pre> check_me_following(type, ids, authorization = get_spotify_authorization_code()) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>type</code></td> <td> <p>Required. String of the ID type: either <code>"artist"</code> or <code>"user"</code>.</p> </td></tr> <tr valign="top"><td><code>ids</code></td> <td> <p>Required. A character vector of the artist or the user <a href="https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids">Spotify IDs</a> to check. For example: <code>ids = c("74ASZWbe4lXaubB36ztrGX", "08td7MxkoHQkXnWAYD8d6Q")</code>. A maximum of 50 IDs can be sent in one request.</p> </td></tr> <tr valign="top"><td><code>authorization</code></td> <td> <p>Required. A valid access token from the Spotify Accounts service. See the <a href="https://developer.spotify.com/documentation/general/guides/authorization-guide/">Web API authorization Guide</a> for more details. Defaults to <code>spotifyr::get_spotify_authorization_code()</code>. The access token must have been issued on behalf of the current user. Getting details of the artists or users the current user follows requires authorization of the <code>user-follow-read</code> scope. See <a href="https://developer.spotify.com/documentation/general/guides/authorization-guide/#list-of-scopes">Using Scopes</a>.</p> </td></tr> </table> <h3>Value</h3> <p>A data frame containing three columns, <code>"type"</code>, the <code>"id"</code> of the artist or users and <code>"is_following"</code> as a logical, boolean variable. </p> <hr /><div style="text-align: center;">[Package <em>spotifyr</em> version 2.2.3 <a href="00Index.html">Index</a>]</div> </body></html>