Amazon Products API Request Signing | Cloud Carpenters

Anyone using the Amazon Product Advertising API (previously known as the Amazon Associates Web Service) should be aware that on August 15th Amazon will start requiring all incoming requests to be signed in accordance with their API documentation. Subscribers to the service should have received an email from Amazon, but if not let this serveRead More

How to authorize a Oauth from PL/SQL

/* Formatted on 2010/08/05 19:19 (Formatter Plus v4.8.8) */ CREATE OR REPLACE PROCEDURE almagesto.update_1daylater –(t_user IN VARCHAR2, t_pass IN VARCHAR2, t_update IN VARCHAR2) AS oauth_request_token_url CONSTANT VARCHAR2 (500) := ‘http://request_token_url’; oauth_consumer_key CONSTANT VARCHAR2 (500) := urlencode (‘yourconsumerkey’); oauth_nonce VARCHAR2 (500); oauth_signature_method CONSTANT VARCHAR2 (10) := urlencode (‘HMAC-SHA1’); oauth_timestamp VARCHAR2 (100); oauth_version CONSTANT VARCHAR2 (5) :=Read More

Developer’s Guide: Data API Protocol – OAuth for Web Applications

The OAuth protocol provides a standard way to access protected data on different websites. Whereas the AuthSub and ClientLogin methods are Google-specific, OAuth is an open protocol that can be implemented on other websites. Like AuthSub, OAuth is useful if you are building a web application that will let users link videos, comments, ratings, contactsRead More

OAuth Guide

  Developers / Advanced API / OAuth Guide OAuth is complicated, so we’ve created this guide to help you out. We’ve tried to simplify it, but if you get stuck, there are a lot of other good resources out there on the internet. A great place to start is the Getting Started guide on theRead More