Sunday 4 September 2011

borigami Marketplace Frequently Asked Questions

1. Can I use another language which is not plain English in your services?

Yes. But you must have a full copy of your content in plain English and must make it as default content. Copies of content in another languages 
must have same meaning of one in plain English.

2. What do you mean 'plain English'?

Plain English means English which can be understood by people from all countries.

3. What do you mean 'default content'?

Default content means copy of content which is at least available to users in the first time they access content.

4. Why I can not use your services to engage in any activity related to Politics, Religion, Sex, Race riot, Violence, Illegal?

Many countries sensor contents on Internet. Contents in those subjects are often sensored. This rule make sure our services will not be 
prevented by any country.

5. Do you take responsibility for data loss?

No. Currently we have not ability to protect our services from illegal attacks. By using our services, you should take risks of data loss.

6. Can I enter secret information such as credit card on derived services from your services?

Our services are not safe for any secret information such as credit card. Please not enter such information in any derived services 
from our services. In case of payment, our services will redirect you to well-known payment gateways such as PayPal. Please make sure 
you enter your secret information in web pages from gateways that you trust.

7. Do you sell my private information?

No. We don't sell your private information. We only require your email saved in our system. Please notice that our services are not 
protected from illegal attacks. You should take risks of saving private information in our services.

borigami Marketplace Terms of Service

borigami Marketplace Terms of Service

Welcome to borigami Marketplace!

1. Our services

(A) Normal use of borigami.com
(B) API access to borigami.net

2. Accepting the Terms

2.1. In order to use the Services, you must first agree to the Terms. You may not use the Services if you do not accept the Terms.

2.2 You can accept the Terms by:

(A) clicking to accept or agree to the Terms, where this option is made available to you by borigami Marketplace in the user interface 
for any Service; or

(B) by actually using the Services. In this case, you understand and agree that borigami Marketplace will treat your use of the Services 
as acceptance of the Terms from that point onwards.

2.3 You may not use the Services and may not accept the Terms if 

(a) you are not of legal age to form a binding contract with borigami Marketplace, or 
(b) you are a person barred from receiving the Services under the laws of the United States or other countries including the country 
in which you are resident or from which you use the Services.

3. Use of the Services by you

3.1 You agree to use the Services only for purposes that are permitted by (a) the Terms and (b) any applicable law, regulation or generally 
accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the 
United States or other relevant countries).

3.2 You agree that you will not engage in any activity that interferes with or disrupts the Services (or the servers and networks which are 
connected to the Services).

3.3 You agree that you will not use the Services to engage in any activity related to

(A) Politics
(B) Religion
(C) Sex
(D) Race riot
(E) Violence
(F) Illegal

3.4 You agree that you will use English as primary language

4. Content in the Services

4.1 borigami Marketplace reserves the right (but shall have no obligation) to pre-screen, review, flag, filter, modify, refuse or remove any or 
all Content from any Service.

4.2. You agree that you are solely responsible for (and that borigami Marketplace has no responsibility to you or to any third party for) any 
Content that you create, transmit or display while using the Services and for the consequences of your actions (including any loss or damage 
which borigami Marketplace may suffer) by doing so.

API v1 - Human Verify (Verify)


Request ID:
Token:

API Call: http://api.borigami.net/v1.php?k=humanverify&p=verify

Input:

r=4e5da3a75af1a
v=abcdef
  • Part in blue color is id returned in request phase.
  • Part in red color is token for verifying.
  • Input must be get variables

Output:

  • In case of error:
  • kind=error
    data=Invalid request!
    

    Part in red color is error message.

  • In case of success:
  • kind=success
    

API v1 - Human Verify (Image)


Request ID:

API Call: http://api.borigami.net/v1.php?k=humanverify&p=image

Input:

r=4e5da3a75af1a
  • Part in blue color is id returned in request phase.
  • Input must be get variables

Output:

  • In case of error:
  • kind=error
    data=Invalid request!
    

    Part in red color is error message.

  • In case of success:
  • Image will be returned.

API v1 - Human Verify (Request)



API Call: http://api.borigami.net/v1.php?k=humanverify&p=request

Output:

  • In case of error:
  • kind=error
    data=Invalid request!
    

    Part in red color is error message.

  • In case of success:
  • kind=success
    data=4e5d7a6590852
    

    Part in red color is id of request which will be used for image and verify phase.

Saturday 3 September 2011

API v1 - Decode HTML

Data:

API Call: http://api.borigami.net/v1.php?k=htmlentities

Input:

phase=decode
data=<script>alert('Hello');</script>
  • Part in blue color is a constant.
  • Part in red color is text which will be decoded.
  • Input must be post variables

Output:

  • In case of error:
  • kind=error
    data=Invalid request!
    

    Part in red color is error message.

  • In case of success:
  • kind=success
    data=<script>alert('Hello');</script>
    

    Part in red color is decoded text.

API v1 - Encode HTML

Data:

API Call: http://api.borigami.net/v1.php?k=htmlentities

Input:

phase=encode
data=<script>alert('Hello');</script>
  • Part in blue color is a constant.
  • Part in red color is text which will be encoded.
  • Input must be post variables

Output:

  • In case of error:
  • kind=error
    data=Invalid request!
    

    Part in red color is error message.

  • In case of success:
  • kind=success
    data=&lt;script&gt;alert(&#039;Hello&#039;);&lt;/script&gt;
    

    Part in red color is encoded text.