Git Product home page Git Product logo

pp-adaptive's Introduction

A Ruby API for PayPal Adaptive Payments

  • Current Status: Work-in-progress (don't use, API subject to major change)
  • Working:
    • setting up an explicit preapproval
    • processing payments (for an explicit preapproval)
  • Not working:
    • executing pre-created payments
    • changing options on a created payment
    • refunds/cancellations
    • minor things like currency conversion requests

This gem provides access to PayPal's Adaptive Payments API using easy-to-use ruby classes. The internals are largely backed by Virtus and RestClient, and so are easy to work with.

Installing the Gem

Via rubygems:

gem install pp-adaptive

Setting up a Preapproval Agreement

    require 'pp-adaptive'
    
    client = AdaptivePayments::Client.new(
      :user_id       => "your-api-user-id",
      :password      => "your-api-password",
      :signature     => "your-api-signature",
      :app_id        => "your-app-id",
      :sandbox       => false
    )

    response = client.execute(AdaptivePayments::PreapprovalRequest.new(
      :ending_date      => DateTime.now.next_year,
      :starting_date    => DateTime.now,
      :max_total_amount => BigDecimal("950.00"),
      :currency_code    => "USD",
      :cancel_url       => "http://site.com/cancelled",
      :return_url       => "http://site.com/completed"
    ))
    
    if response.success?
      puts "Preapproval key: #{response.preapproval_key}"
    else
      puts "#{response.ack_code}: #{response.error_message}"
    end

(Work in progress...)

pp-adaptive's People

Contributors

d11wtq avatar pda avatar emiddleton avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.