Skip to content

Commit

Permalink
Merge pull request #4 from ashbaldry/bugfix/itunes-url
Browse files Browse the repository at this point in the history
Updating API URL
  • Loading branch information
ashbaldry authored Oct 6, 2022
2 parents b60c0ed + 9b8415a commit 521d56c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Package: appler
Type: Package
Title: 'Apple App Store' and 'iTunes' Data Extraction
Version: 0.1.3
Version: 0.1.4
Authors@R: person("Ashley", "Baldry", email = "arbaldry91@gmail.com", role = c("aut", "cre"))
Description: Using 'Apple App Store' <https://www.apple.com/app-store/> web scraping and 'iTunes' API
<https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/>
<https://performance-partners.apple.com/resources/documentation/itunes-store-web-service-search-api.html>
to extract content information, app ratings and reviews.
URL: https://github.com/ashbaldry/appler,
https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/
https://performance-partners.apple.com/resources/documentation/itunes-store-web-service-search-api.html
BugReports: https://github.com/ashbaldry/appler/issues
Imports: httr, jsonlite, rvest, glue, xml2
Suggests: testthat (>= 3.0.0), curl
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# appler 0.1.4

* Updating API documentation URL

# appler 0.1.3

* Updating examples
Expand Down
4 changes: 2 additions & 2 deletions R/info.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#' # To search for all Jack Johnson audio and video content and return only the first 25 items
#' search_apple(term = "jack johnson", limit = 25)
#'
#' @seealso \url{https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/}
#' @seealso \url{https://performance-partners.apple.com/resources/documentation/itunes-store-web-service-search-api.html}
#'
#' @export
search_apple <- function(term, country = NULL, media = NULL, entity = NULL, attribute = NULL,
Expand Down Expand Up @@ -116,7 +116,7 @@ search_apple <- function(term, country = NULL, media = NULL, entity = NULL, attr
#' # Look up Jack Johnson by AMG artist ID
#' lookup_apple(468749, id_type = "amgArtistId")
#'
#' @seealso \url{https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/}
#' @seealso \url{https://performance-partners.apple.com/resources/documentation/itunes-store-web-service-search-api.html}
#'
#' @export
lookup_apple <- function(id, country = NULL, entity = NULL, limit = NULL, sort = NULL, id_type = "id") {
Expand Down
2 changes: 1 addition & 1 deletion man/lookup_apple.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/search_apple.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 521d56c

Please sign in to comment.