Specialty issues are themed compiled music video releases. These specialty releases periodically go on sale and all of them are available in POOL. When a customer makes a purchase, their new specialty release will be listed in this API call alphabetically by name.
Example JSON Output
[
{
"downloaded": 0,
"id": 240,
"modified": 1462293294,
"release": "All Time Party Classics",
"release_date": "2012-02-03",
"release_image": "https://pomed.promoonly.com/issue_imgs/ATP-USA-500.png",
"tracks": 44
},
{
"downloaded": 1,
"id": 2259,
"modified": 1462292874,
"release": "Alternative Dance 80-83 Vol. 1",
"release_date": "2012-07-24",
"release_image": "https://pomed.promoonly.com/issue_imgs/ALTDANCE_80-83_500.png",
"tracks": 39
},
{
"downloaded": 0,
"id": 3871,
"modified": 1476999128,
"release": "Alternative Dance 80-83 Vol. 2",
"release_date": "2012-07-27",
"release_image": "https://pomed.promoonly.com/issue_imgs/ALTDANCE_80-83V2_500.png",
"tracks": 41
}
]
PHP (using cURL):
<?php
$userid = 1;
$token = "8b26e1e4f3f5e00a888807e605565c47";
$specialty_url = "https://api.promoonly.com/specialty_az/1";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $specialty_url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: Bearer ".base64_encode($userid.":".$token)));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$specialty_result = curl_exec($ch);
curl_close($ch);
$specialty_obj = json_decode($specialty_result);
?>
Javascript (using jQuery):
function b64EncodeUnicode(str)
{
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,
function toSolidBytes(match, p1)
{
return String.fromCharCode('0x' + p1);
}));
}
var userid = 1;
var token = "8b26e1e4f3f5e00a888807e605565c47";
var auth_str = "Bearer " + b64EncodeUnicode(userid + ":" + token);
$.ajax({
type: "GET",
url: "https://api.promoonly.com/specialty_az/1",
headers: { "Authorization": auth_str },
dataType: "json",
success: function (data)
{
console.log(data);
}
});
Python (using requests):
#!/usr/bin/env python
import requests
import base64
import urllib
userid = 1
token = "8b26e1e4f3f5e00a888807e605565c47"
b64_key = base64.b64encode("%s:%s" % (userid, token))
headers = {"Authorization": "Bearer %s" % b64_key}
specialty_url = "https://api.promoonly.com/specialty_az/1"
result_return = requests.get(specialty_url, headers=headers)
print(result_return.text)