GET comments/getTypes
Returns a list of available comment types.
URL:
http://mobileroadie.com/api/comments/getTypes
Formats
XML, JSON, HTML
HTTP Method(s):
GET
Parameters:
-
api_key
-
Required
-
Usage Example
http://mobileroadie.com/api/comments/getTypes/key/4d4ba30d73b77f7
Code Example
<?php $handle = curl_init("https://mobileroadie.com/api/comments/getTypes/key/4d4ba30d73b77f7/limit/10/format/xml"); curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY); $response = curl_exec($handle); curl_close($handle); ?>
Example XML Response
<?xml version="1.0" encoding="utf-8"?> <xml> <item>music</item> <item>video</item> <item>show</item> <item>buzz</item> <item>twitter</item> <item>official</item> <item>fanwall</item> <item>photos</item> </xml>
Comments
0 comments
Please sign in to leave a comment.