Gi… public FALSE ""
+ 15 11264207… http… 2024-06-19 07:22:00 "\"… public FALSE ""
+ 16 11264207… http… 2024-06-19 07:21:58 "
Fe… public FALSE ""
+ 17 11264207… http… 2024-06-19 07:21:48 "Wow i… public FALSE ""
+ 18 11264207… http… 2024-06-19 07:21:49 "
Sy… public FALSE ""
+ 19 11264207… http… 2024-06-19 07:21:29 ", favourites_count ,
+ # replies_count , url , in_reply_to_id ,
+ # in_reply_to_account_id , language , text ,
+ # application >, poll >, card >, account ,
+ # reblog >, media_attachments >, mentions >,
+ # tags >, emojis >, favourited , reblogged ,
+ # muted , bookmarked , pinned
+
+Other functions, e.g. `get_timeline_hashtag()`, `get_account_statuses()`
+require authentication.
+
+## Contact Details
+
+Maintainer: David Schoch
+
+Issue Tracker:
+
+## Publication
+
+1. Schoch, D., & Chan, C. H. (2023). Software presentation: Rtoot:
+ Collecting and analyzing Mastodon data. Mobile Media &
+ Communication, 11(3), 575-578.
+ https://doi.org/10.1177/20501579231176678
+
+
+
+
+
diff --git a/methodshub.qmd b/methodshub.qmd
new file mode 100644
index 0000000..4149597
--- /dev/null
+++ b/methodshub.qmd
@@ -0,0 +1,95 @@
+---
+title: rtoot - Collecting and Analyzing Mastodon Data
+format:
+ html:
+ embed-resources: true
+ gfm: default
+---
+
+## Description
+
+
+
+An implementation of calls designed to collect and organize Mastodon data via its Application Program Interfaces (API), which can be found at the following URL: .
+
+## Keywords
+
+
+
+* Mastodon
+* Decentralized Social Network
+* Social Media Data
+
+## Science Usecase(s)
+
+
+
+
+Although not using this package, the data from the Mastodon API has been used in various social science publications on platform migration (e.g. [La Cava et al. 2023](https://doi.org/10.1038/s41598-023-48200-7)) and online network formation (e.g. [La Cava, et al. 2021](https://doi.org/10.1007/s41109-021-00392-5)).
+
+## Repository structure
+
+This repository follows [the standard structure of an R package](https://cran.r-project.org/doc/FAQ/R-exts.html#Package-structure).
+
+## Environment Setup
+
+With R installed:
+
+```r
+install.packages("rtoot")
+```
+
+
+
+
+
+
+## Input Data
+
+
+
+
+No applicable.
+
+## Sample Input and Output Data
+
+
+
+
+As a data collection software, this tool does not have any "sample input".
+
+The output from this software is a [standard tibble](https://cran.r-project.org/package=tibble) of data collected from the Mastodon API.
+
+## How to Use
+
+
+
+
+Please refer to the ["Introduction to rtoot"](https://gesistsa.github.io/rtoot/articles/rtoot.html) for a comprehensive introduction of the package.
+
+In general, one should first conduct the authentication to obtain an access token. This can be done with the provided function `auth_setup()`. For more information, please refer to the documentation on [authentication](https://gesistsa.github.io/rtoot/articles/auth.html).
+
+However, it is also possible to use some of functions with authentication. For example, it is possible to obtain the public timeline of a Mastodon instance, e.g. emacs.ch.
+
+```{r}
+library(rtoot)
+get_timeline_public(instance = "emacs.ch")
+```
+
+Other functions, e.g. `get_timeline_hashtag()`, `get_account_statuses()` require authentication.
+
+## Contact Details
+
+Maintainer: David Schoch
+
+Issue Tracker: [https://github.com/gesistsa/rtoot/issues](https://github.com/gesistsa/rtoot/issues)
+
+## Publication
+
+1. Schoch, D., & Chan, C. H. (2023). Software presentation: Rtoot: Collecting and analyzing Mastodon data. Mobile Media & Communication, 11(3), 575-578. https://doi.org/10.1177/20501579231176678
+
+
+
+
+
+
diff --git a/postBuild b/postBuild
new file mode 100644
index 0000000..942913e
--- /dev/null
+++ b/postBuild
@@ -0,0 +1,62 @@
+#!/bin/bash -v
+
+# determine which version of Quarto to install
+QUARTO_VERSION=1.4.551
+
+# See whether we need to lookup a Quarto version
+if [ $QUARTO_VERSION = "prerelease" ]; then
+ QUARTO_JSON="_prerelease.json"
+elif [ $QUARTO_VERSION = "release" ]; then
+ QUARTO_JSON="_download.json"
+fi
+
+if [ $QUARTO_JSON != "" ]; then
+
+# create a python script and run it
+PYTHON_SCRIPT=_quarto_version.py
+if [ -e $PYTHON_SCRIPT ]; then
+ rm -rf $PYTHON_SCRIPT
+fi
+
+cat > $PYTHON_SCRIPT <