I hereby claim:
- I am marianzange on github.
- I am iopanic (https://keybase.io/iopanic) on keybase.
- I have a public key ASBeFnE9XucA6E-UhekCcRvu2CCRb5SgDRrSqY-TX6D0fQo
To claim this, I am signing this object:
<?php | |
// Load required libs and stuff | |
require_once('lib/twitteroauth/twitteroauth.php'); | |
require_once('config.php'); | |
require_once('lib/simple_html_dom.php'); | |
$tweets = Array(); | |
$content = Array(); |
<?php | |
define('CONSUMER_KEY', 'YOURCONSUMERKEY'); | |
define('CONSUMER_SECRET', 'YOURCONSUMERSECRET'); | |
define('OAUTH_TOKEN', 'YOUROAUTHTOKEN'); | |
define('OAUTH_SECRET', 'YOUROAUTHSECRET'); |
I hereby claim:
To claim this, I am signing this object:
// Computes the HMAC for requests sent to the Coinbase Pro API. | |
// | |
// - Add the following code as Postman pre-request script | |
// - Adapt the getPatch function an the variable names according to your needs | |
const timestamp = Date.now() / 1000; | |
function getPath(url) { | |
// URL path regex works only if your URLs look like this: {{api_url}}/resource | |
// If you use hardcoded URLs or any other scheme, adapt the regex pattern! |