Hi,
For my website project, I need to pull in a list of recordings made of the meetings. In initial trials, I was able to get back the XML structure showing all of info I require. Thus:
array (size=2)
'status' =>
array (size=1)
'@attributes' =>
array (size=1)
'code' => string 'ok' (length=2)
'scos' =>
array (size=1)
'sco' =>
array (size=8)
'@attributes' =>
array (size=8)
...
'name' => string 'My Really Neat Webinar_0' (length=32)
'url-path' => string '/p62qwpgtskh/' (length=13)
'date-begin' => string '2014-01-05T13:20:47.447-05:00' (length=29)
'date-end' => string '2014-01-05T13:22:01.080-05:00' (length=29)
'date-created' => string '2014-01-05T13:20:47.447-05:00' (length=29)
'date-modified' => string '2014-01-05T13:22:01.080-05:00' (length=29)
'is-seminar' => string 'false' (length=5)
However, I had a beta tester record a meeting the other day and when I use the same call, I get back an empty array under 'scos':
array (size=2)
'status' =>
array (size=1)
'@attributes' =>
array (size=1)
'code' => string 'ok' (length=2)
'scos' =>
array (size=1)
'sco' =>
array (size=3)
0 =>
array (size=6)
...
1 =>
array (size=6)
...
2 =>
array (size=9)
...
I can see the recording in the Adobe Connect console and I know that the meeting sco-id is correct. Any idea of why I can't get the data that should be there?
Thanks in advance,
Mark