EVOLUTION-MANAGER
Edit File: get_label_artists.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: Search for artists by label</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 get_label_artists {spotifyr}"><tr><td>get_label_artists {spotifyr}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Search for artists by label</h2> <h3>Description</h3> <p>Get Spotify Catalog information about artists belonging to a given label. </p> <h3>Usage</h3> <pre> get_label_artists( label = character(), market = NULL, limit = 20, offset = 0, authorization = get_spotify_access_token() ) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>label</code></td> <td> <p>Required. <br /> String of label name to search for <br /> For example: <code>label = "brainfeeder"</code>.</p> </td></tr> <tr valign="top"><td><code>market</code></td> <td> <p>Optional. <br /> An ISO 3166-1 alpha-2 country code or the string <code>"from_token"</code>. <br /> If a country code is specified, only artists with content that is playable in that market is returned. <br /> Note: <br /> - If market is set to <code>"from_token"</code>, and a valid access token is specified in the request header, only content playable in the country associated with the user account is returned. <br /> - Users can view the country that is associated with their account in the account settings. A user must grant access to the user-read-private scope prior to when the access token is issued.</p> </td></tr> <tr valign="top"><td><code>limit</code></td> <td> <p>Optional. <br /> Maximum number of results to return. <br /> Default: 20 <br /> Minimum: 1 <br /> Maximum: 50</p> </td></tr> <tr valign="top"><td><code>offset</code></td> <td> <p>Optional. <br /> The index of the first result to return. <br /> Default: 0 (the first result). <br /> Maximum offset (including limit): 10,000. <br /> Use with limit to get the next page of search results.</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_access_token()</code></p> </td></tr> </table> <h3>Value</h3> <p>A data frame with the label information of the artists. </p> <h3>Examples</h3> <pre> get_label_artists('brainfeeder') </pre> <hr /><div style="text-align: center;">[Package <em>spotifyr</em> version 2.2.3 <a href="00Index.html">Index</a>]</div> </body></html>