README.md in xapo_sdk-0.2.1 vs README.md in xapo_sdk-0.2.2
- old
+ new
@@ -1,28 +1,24 @@
# README
->This is the Ruby version of the Xapo's Widget Tools. These tools allow you (Third Party Application, TPA) to easily embed tools like Payments Buttons, Donation Buttons and other kind of widgets as DIV or iFrame into your web application using your language of choice. In this way, tedious details like encryption and HTML snippet generation are handled for you in a simple and transparent way.
+>This is the Ruby version of the Xapo's SDK & Widget Tools. These tools allow you (Third Party Application, TPA) to easily develop your bitcoins applications to manage *Accounts, Wallets, Transactions*, etc., or embed tools like *Payments Buttons, Donation Buttons* and other kind of widgets into your web application using your language of choice. In this way, tedious details like encryption and HTML snippet generation are handled for you in a simple and transparent way.
+For more information please visit: http://developers.xapo.com
+
---
+[![Gem Version](https://badge.fury.io/rb/xapo_sdk.svg)](http://badge.fury.io/rb/xapo_sdk)
+[![Build Status](https://travis-ci.org/xapo/ruby-sdk.svg?branch=master)](https://travis-ci.org/xapo/ruby-sdk)
+
[Changelog](CHANGELOG.md)
+## Table of Contents
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
-## Table of Contents
- [Build](#build)
- [Installation](#installation)
-- [API](#api)
- - [Credit](#credit)
- - [Parameters](#parameters)
- - [Result](#result)
- - [Usage Example](#usage-example)
-- [Micro Payment Widgets](#micro-payment-widgets)
- - [IFrame Widget](#iframe-widget)
- - [Div Widget](#div-widget)
- - [Widgets Gallery](#widgets-gallery)
- [Contributing](#contributing)
- [TODO](#todo)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
@@ -54,180 +50,11 @@
Or install it yourself as:
$ gem install xapo_sdk
-## API
-The of the API allows third party application to interact with Xapo wallets and resources in a simple and intuitive way.
-
-
-Development Environment:
-
-> http://dev.xapo.com/api/v1
-
-### Credit
-
-The Credit API allows any Third Party Application (TPA) to load Bitcoins into any Xapo Wallet using a secure App_ID + App_Shared_Key authentication method.
-
-#### Parameters
-
-- **To:** ``(string, mandatory)`` any email, BTC address or mobile number.
-- **Currency:** ``(Currency, mandatory)`` any of ``Currency.BTC`` or ``Currency.SAT`` .
-- **Amount:** ``(numeric, mandatory)`` amount to be credited.
-- **Comments:** ``(string, optional)`` note or message to attach to the transaction.
-- **Subject:** ``(string, optional)`` if specified, will be used as email subject (when crediting an email address) or SMS text (when crediting a mobile #).
-- **Timestamp:** ``(int, mandatory)`` UTC Unix Timestamp. The request will be rejected if using a timestamp not equal or greater than the last used by previous request.
-- **Resquest Id:** ``(string, mandatory)`` any ID that uniquely identifies this request. Cannot be repeated with any new request.
-
-#### Result
-
-The result is a dictionary containing:
-
-| Key | Type | Description |
-|---------| ------- | ----------- |
-| success | boolean | Indicates whether the request was successfully processed or not |
-| code | string | A response |
-| message | string | Description of the result |
-
-Error codes:
-
-| Code | Message |
-| --------------- | ------- |
-Success | Wallet successfully credited |
-InvalidRequest | Either the App token or Hash are invalid |
-ExpiredRequest | The request timestamp and/or unique_request_id have expired |
-InvalidWallet | Wallet not linked with this APP |
-InvalidEmail | The destination email is invalid |
-InvalidBTCAddress | The destination BTC address is invalid |
-InvalidCellphone | The destination mobile number is invalid |
-InvalidCurrency | The currency is invalid |
-InvalidAmount | The amount to deposit is invalid |
-MinimumAmount | The amount to deposit must be at least XXX |
-InsufficientFunds | The wallet you are withdrawing from does not have enough available balance to fulfill the Deposit |
-
-
-#### Usage Example
-
-```ruby
-
- require "xapo_api"
- require "securerandom"
-
- ...
-
- # config the api
- api = Xapo::API.new(SERVICE_URL, APP_ID, APP_SECRET)
-
- ...
-
- # call cerdit service
- res = api.credit('sample@xapo.com', 0.5, SecureRandom.hex,
- currency: Xapo::Currency::BTC,
- comments: "Sample deposit")
-
- puts(res)
-```
-
-
-## Micro Payment Widgets
-Micro payment widgets allow to dynamically get a HTML snippet pre-configured and insert into your web page. Micro payment widgets provides 4 kind of pre-configured actions __Pay, Donate, Tip__ and __Deposit__. The widgets allow the following configurations:
-
-- **Amount BIT:** `[optional]` sets a fixed amount for the intended payment.
-- **Sender's Id:** `[optional]` any identifier used in the TPA context to identify the sender.
-- **Sender's email:** `[optional]` used to pre-load the widget with the user's email.
-- **Sender's cellphone:** `[optional]` used to pre-load the widget with the user's cellphone.
-- **Receiver's Id:** `[mandatory]` any receiver's user unique identifier in the TPA context.
-- **Receiver's email:** `[mandatory]` the email of the user receiving the payment. It allows XAPO to contact the receiver to claim her payment.
-- **Pay Object's Id:** `[mandatory]` any unique identifier in the context of the TPA distinguishing the object of the payment.
-- **Pay type:** `[optional]` any of Donate | Pay | Tip | Deposit.
-
-Be aware that micro payments could be optionally configured with your own application id and secret (`app_id`/`app_secret`). Configuring the micro payment with your application credentials allows you to charge a transaction fee for example.
-
-### IFrame Widget
-```ruby
-require 'xapo_tools'
-
-...
-
-micro_payment = XapoTools::MicroPayment.new(
- XAPO_URL,
- APP_ID, # optional
- APP_SECRET # optional
- )
-config = XapoTools.micro_payment_config
-
-config[:sender_user_email] = "sender@xapo.com"
-config[:sender_user_cellphone] = "+5491112341234"
-config[:receiver_user_id] = "r0210"
-config[:receiver_user_email] = "fernando.taboada@xapo.com"
-config[:pay_object_id] = "to0210"
-config[:amount_BIT] = 0.01
-config[:pay_type] = PayType::DONATE
-
-# Get IFRAME snippet
-String iframe = microPayment.buildIframeWidget(request);
-```
-
-With this you get the following snippet:
-
-```html
-<iframe id='tipButtonFrame' scrolling='no' frameborder='0' style='border:none; overflow:hidden; height:22px;' allowTransparency='true' src='http://dev.xapo.com:8089/pay_button/show?customization=%7B%22button_text%22%3A%22Tip%22%7D&app_id=b91014cc28c94841&button_request=C%2F6OaxS0rh3jMhH90kRYyp3y%2BU5ADcCgMLCyz2P5ssFG%2FJoGf55ccvicyRMuIXpU5xhDeHGffpZAvVeMCpJhGFyIPwLFh%2FVdnjnDUjYgJCQeB4mCpGsEW5SC6wNvg69ksgeAtr108Wc5miA8H4JG99EWTTlC7WtIGg5rFKkbjrop15fSJfhv5cTs02jSC5f2BaLlh1mKh5hSPW3HGcWcl%2BdyZj%2F9m1lPB4gKfky2%2FnT0tYjbEFo5aU6WtowWrf2xE8OYejyI0poEFkClBkv2eDkp4Gel4tGb%2Bkwszcyb18ztK89RlBwhe8sX4HeM2KJM8ZaWuDOGH2VW4kbThMCZEw%3D%3D'></iframe>
-```
-
-See the example results in the [widgets gallery](#widgets-gallery).
-
-### Div Widget
-```ruby
-require 'xapo_tools'
-
-...
-
-micro_payment = XapoTools::MicroPayment.new(
- XAPO_URL,
- APP_ID, # optional
- APP_SECRET # optional
- )
-config = XapoTools.micro_payment_config
-
-config[:sender_user_email] = "sender@xapo.com"
-config[:sender_user_cellphone] = "+5491112341234"
-config[:receiver_user_id] = "r0210"
-config[:receiver_user_email] = "fernando.taboada@xapo.com"
-config[:pay_object_id] = "to0210"
-config[:amount_BIT] = 0.01
-config[:pay_type] = PayType::TIP
-
-# PayType::TIP | PayType::PAY | PayType::DEPOSIT | PayType::DONATE
-config[:pay_type] = PayType::DONATE
-
-# Get DIV snippet
-xapo_tools.build_div_widget(config)
-```
-
-With this you get the following snippet:
-
-```html
-<div id='tipButtonDiv' class='tipButtonDiv'></div>
-<div id='tipButtonPopup' class='tipButtonPopup'></div>
-<script>
-$(document).ready(function() {$('#tipButtonDiv').load('http://dev.xapo.com:8089/pay_button/show?customization=%7B%22button_text%22%3A%22Donate%22%7D&app_id=b91014cc28c94841&button_request=C%2F6OaxS0rh3jMhH90kRYyp3y%2BU5ADcCgMLCyz2P5ssFG%2FJoGf55ccvicyRMuIXpU5xhDeHGffpZAvVeMCpJhGFyIPwLFh%2FVdnjnDUjYgJCQeB4mCpGsEW5SC6wNvg69ksgeAtr108Wc5miA8H4JG99EWTTlC7WtIGg5rFKkbjrop15fSJfhv5cTs02jSC5f2BaLlh1mKh5hSPW3HGcWcl%2BdyZj%2F9m1lPB4gKfky2%2FnT0tYjbEFo5aU6WtowWrf2xE8OYejyI0poEFkClBkv2eDkp4Gel4tGb%2Bkwszcyb18ztK89RlBwhe8sX4HeM2KJMHVfAM8NQXQu8oiIyCAl0vg%3D%3D');});
-</script>
-```
-
-See the example results in the [widgets gallery](#widgets-gallery).
-
-### Widgets Gallery
-
-![payment button](http://developers.xapo.com/images/payment_widget/donate_button.png)
-
-![payment phone](http://developers.xapo.com/images/payment_widget/mpayment1.png)
-
-![payment email](http://developers.xapo.com/images/payment_widget/mpayment2.png)
-
-![payment pin](http://developers.xapo.com/images/payment_widget/mpayment3.png)
-
## Contributing
1. Fork it ( https://github.com/xapo/ruby-sdk/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
@@ -235,9 +62,9 @@
5. Create a new Pull Request
## TODO
- ~~Fix style (https://github.com/bbatsov/ruby-style-guide#naming)~~
- ~~Add unit testing~~
-- Document, document, ~~document~~
+- Document, ~~document~~, ~~document~~
- ~~Review naming and organization (with respect to Java & Python?)~~
- ~~Review `gem` build infraestructure~~
- ...