blob: ab0fd716a6fb50c28b28f23faa8c3da24b3d336f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
const RMS_API_BASE = 'https://rms.api.bbc.co.uk/v2';
const RMS_SOUNDS_HOME = '/experience/inline/listen/sign-in';
const RMS_SOUNDS_CONTAINER = '/experience/inline/container';
const RMS_SOUNDS_PLAYABLE = '/experience/inline/play';
const RMS_SOUNDS_TOKEN_BASE = '/sign/token';
function rms_fetch(string $path): stdClass {
return json_decode(file_get_contents(RMS_API_BASE . $path));
}
|