The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
shinyservicebot
Create in-app purchasing and
subscriptions through ‘Servicebot’ payment using the ‘Stripe’
framework.
“Servicebot provides a user interface (UI) on top of Stripe. Stripe will remain the single source of truth for all things billing which makes Servicebot the easiest & fastest way to launch with Stripe.”
Click here for more information about servicebot.
Online payment processing for internet businesses. Stripe is a suite of payment APIs that powers commerce for online businesses
Click here for more information about stripe.
if (!require("remotes")) install.packages("remotes")
::install_github("capiaas/shinyservicebot") remotes
To learn more we highly recommend you check out the servicebot docs. The site will explain in depths the setup of Servicebot.
Initialize servicebot by running the init command.
# -------
# FOR DEVELOPMENT
# -------
shinyservicebot::init(dev_mode = TRUE)
# -------
# FOR LIVE PRODUCTION
# -------
shinyservicebot::init(
servicebot_secret = "Your servicebot secret",
secure_setup = TRUE
)
library(shinyservicebot)
# init servicebot pr user login
shinyservicebot::init(dev_mode = TRUE)
# Config
servicebot_config = list(
servicebot_id = "E0OQN0P0Dort", # // LIVE & TEST MODE IDs ARE DIFFERENT
service = "Flat Subscription",
email = "shinyservicebot36io3ejbyf1pea7g61mxki@yopmail.com"
)
# Render the shinyservoicebot pricing
shinyservicebot::shinyservicebotOutput("servicebot")
library(shiny)
library(shinyservicebot)
# init servicebot pr user login
shinyservicebot::init(dev_mode = TRUE)
# Config
servicebot_config = list(
servicebot_id = "E0OQN0P0Dort", # // LIVE & TEST MODE IDs ARE DIFFERENT
service = "Flat Subscription",
email = "shinyservicebot36io3ejbyf1pea7g61mxkh@yopmail.com"
)
# UI ----
ui <- fluidPage(
# App title ----
titlePanel("SERVICEBOT PRICING PAGE"),
shinyservicebot::shinyservicebotOutput("servicebot")
)
# SERVER ----
server <- function(input, output) {
output$servicebot <- shinyservicebot::renderShinyservicebot(
shinyservicebot::shinyservicebot(servicebot_config, width = "auto")
)
}
# Create Shiny app ----
shinyApp(ui = ui, server = server)
library(shiny)
library(shinyservicebot)
# -------
# FOR LIVE PRODUCTION
# -------
# shinyservicebot::init(
# servicebot_secret = "Your servicebot secret",
# secure_setup = TRUE
# )
# -------
# FOR DEVELOPMENT
# -------
shinyservicebot::init(dev_mode = TRUE)
# Config
servicebot_config = list(
servicebot_id = "E0OQN0P0Dort", # // LIVE & TEST MODE IDs ARE DIFFERENT
service = "Flat Subscription",
email = "shinyservicebot36io3ejbyf1pea7g61mxki@yopmail.com",
options = list(
i18n = list(defaultLng = "en") # // SET DEFAULT LANGUAGE
)
)
# UI ----
ui <- fluidPage(
# App title ----
titlePanel("SERVICEBOT PORTAL PAGE"),
shinyservicebot::shinyservicebotOutput("servicebot")
)
# SERVER ----
server <- function(input, output) {
output$servicebot <- shinyservicebot::renderShinyservicebot(
shinyservicebot::shinyservicebot(servicebot_config, width = "auto")
)
}
# Create Shiny app ----
shinyApp(ui = ui, server = server)
You can run examples directly from the package
# Test pricing embed in shiny app
shinyservicebot::runPricingExample()
# Test portal embed in shiny app
shinyservicebot::runPortalExample()
# Test signup embed in shiny app
shinyservicebot::runSignupExample()
This package is not affiliated with any of the service providers it supports.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.