You are here

function Disqus::get_forum_api_key in Disqus 7

Get a forum API key for a specific forum.

Parameters

$forum_id: the unique id of the forum

Return value

A string which is the Forum Key for the given forum.

File

./disqus.php, line 75
Provides the Disqus PHP API.

Class

Disqus
The Disqus PHP API.

Code

function get_forum_api_key($forum_id) {
  return $this
    ->call('get_forum_api_key', array(
    'forum_id' => $forum_id,
  ));
}