Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

leshua_pay

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leshua_pay

  • 0.0.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

LeshuaPay

Build StatusInline docs

A gem to deal with LeshuaPay. The LeshuaPay official document can be found here. You will receive the backend document when you get the LeshuaPay access.

Installation

Add this line to your application's Gemfile:

gem 'leshua_pay', '~> 0.0.1'

And then execute:

$ bundle

Or install it yourself as:

$ gem install leshua_pay

Usage

Configuration

LeshuaPay.configure do |w|
  w.app_id = 'sdfadfasfd'
  w.mch_id = '0000000018'
  w.payment_key = 'a1613a0e7cb9d3a51e33784ee4d212ac'
end

The params contains:

  • app_id: 公众账号ID
  • mch_id: 微信商户账号
  • payment_key: 商户支付秘钥

扫码支付

  options = {
    body: 'awesome product name'
    third_order_id: '20150101030320204',
    amount: 100, # in cents
    client_ip: '127.0.0.1',
    notify_url: 'http://example.com/notify',
  }

  body = LeshuaPay::Service.scan_code_pay(options)

条码支付

options = {
  body: 'awesome product name'
  third_order_id: '20150101030320204',
  auth_code: 'http://www.baidu.com',
  amount: 100,
  client_ip: '127.0.0.1',
  notify_url: 'http://example.com/notify',
}

body = LeshuaPay::Service.barcode_pay(options)

Refund/退款

options = {
  third_order_id: "asdfwfa3231214",
  refund_amount: 1,
  merchant_refund_id: SecureRandom.base64(64)
}
LeshuaPay::Service.refund(options)

## Contributing

1. Fork it ( https://github.com/[my-github-username]/LeshuaPay/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

FAQs

Package last updated on 24 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc