Skip to content

Instantly share code, notes, and snippets.

@bmarshall511
Created August 20, 2014 02:10
Show Gist options
  • Select an option

  • Save bmarshall511/5353b743835a5233869a to your computer and use it in GitHub Desktop.

Select an option

Save bmarshall511/5353b743835a5233869a to your computer and use it in GitHub Desktop.
<?php
$api = new Mozscape_API_Class( 'accessId', 'secretKey' );
echo $api->responseFields( 'ut', 'name' ); // Returns 'Title'
echo $api->responseFields( 'ut', 'description' ); // Returns 'The title of the page if available. For example: "Request-Response Format"'
echo $api->responseFields( 'ut', 'bit_flag' ); // Returns '1'
echo $api->responseFields( 'ut', 'slug' ); // Returns 'title'
echo $api->responseFields( 'ut', 'free' ); // Returns 'yes'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment