https://github.com/carlganz/shinycaptcha

Shiny module for google reCAPTCHA V2

https://github.com/carlganz/shinycaptcha

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (9.1%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Shiny module for google reCAPTCHA V2

Basic Info
  • Host: GitHub
  • Owner: carlganz
  • License: other
  • Language: R
  • Default Branch: master
  • Size: 7.81 KB
Statistics
  • Stars: 13
  • Watchers: 1
  • Forks: 3
  • Open Issues: 2
  • Releases: 0
Created over 8 years ago · Last pushed over 8 years ago
Metadata Files
Readme License

README.Rmd

---
output: github_document
---
[![Travis-CI Build Status](https://travis-ci.org/CannaData/shinyCAPTCHA.svg?branch=master)](https://travis-ci.org/CannaData/shinyCAPTCHA)


```{r, echo = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)
```

# shinyCAPTCHA

The goal of shinyCAPTCHA is to provide google reCAPTCHA to Shiny apps. reCAPTCHA is a tool to prevent computers from spamming your websites forms. 

## Installation

You can install shinyCAPTCHA from github with:

```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("CannaData/shinyCAPTCHA")
```

## Example

You can view example [here](https://carlganz.shinyapps.io/shinyCAPTCHAdemo/)

```{r example, eval=FALSE}
library(shiny)
library(shinyCAPTCHA)

ui <- fluidPage(
  recaptchaUI("test", sitekey = "6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI"),
  uiOutput("humansOnly")
)

server <- function(input, output, session) {
  
  result <- callModule(recaptcha, "test", secret = "6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe")
  
  output$humansOnly <- renderUI({
    req(result()$success)
    tags$h1("For human eyes only!")
  })
  
}

shinyApp(ui, server)
```

Owner

  • Name: Carl Ganz
  • Login: carlganz
  • Kind: user
  • Location: Los Angeles

Some kind of programer

GitHub Events

Total
Last Year

Issues and Pull Requests

Last synced: about 1 year ago

All Time
  • Total issues: 2
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 2
  • Total pull request authors: 0
  • Average comments per issue: 0.0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • nicocriscuolo (1)
  • carlganz (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels