freearhey / knowledge-graph
A simple PHP client for working with Google Knowledge Graph API
Installs: 40 484
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- guzzlehttp/guzzle: ^7.2
- tightenco/collect: ^8.19
Requires (Dev)
- phpunit/phpunit: 9.5.0
README
A simple PHP client for working with Google Knowledge Graph API.
Installation
composer require freearhey/knowledge-graph
Usage
require_once('vendor/autoload.php'); use KnowledgeGraph\Client; use KnowledgeGraph\KnowledgeGraph; $client = new Client(); $client->setKey('YOUR_API_KEY'); // More about API Key here: https://developers.google.com/knowledge-graph/how-tos/authorizing $graph = new KnowledgeGraph($client);
Available Methods
search()
The search
method give you a way to search in Knowledge Graph by entity name.
$results = $graph->search($query, $type, $lang, $limit);
Arguments:
$query
: term to search (required)$type
: specify the type of results (e.g. "Book") (List of available types: https://developers.google.com/knowledge-graph/)$lang
: specify the results language$limit
: set a custom limit (default: 20)
Example:
$results = $graph->search('taylor swift'); /* Collection { #items: array:20 [ 0 => SearchResult { id: "/m/0dl567" score: 1466.352905 name: "Taylor Swift" type: array:2 [ 0 => "Thing" 1 => "Person" ] description: "American singer" image: array:2 [ "contentUrl" => "http://t0.gstatic.com/images?q=tbn:ANd9GcST848UJ0u31E6aoQfb2nnKZFyad7rwNF0ZLOCACGpu4jnboEzV" "url" => "https://en.wikipedia.org/wiki/Begin_Again_(Taylor_Swift_song)" ] detailedDescription: array:3 [ "articleBody" => "Taylor Alison Swift is an American singer-songwriter. As one of the world's leading contemporary recording artists, she is known for narrative songs about her p ▶" "url" => "https://en.wikipedia.org/wiki/Taylor_Swift" "license" => "https://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License" ] url: "http://taylorswift.com/" } ... ] } */
The search
method always returns Illuminate\Support\Collection
class with results. This means you can use all the methods available in Laravel's Collections.
find()
The find
method give you a way to search by entity ID.
$results = $graph->find($id, $lang);
Arguments:
$id
: ID to search (e.g. "/m/0dl567")$lang
: specify the results language
Example:
$results = $graph->find('/m/02j81'); /* SearchResult { id: "/m/02j81" score: 26.98455 name: "Eiffel Tower" type: array:5 [ 0 => "Thing" 1 => "CivicStructure" 2 => "Place" 3 => "TouristAttraction" 4 => "Organization" ] description: "Tower in Paris, France" image: array:2 [ "contentUrl" => "http://t1.gstatic.com/images?q=tbn:ANd9GcSao5YmaJqJVcSi60m9ypkaIC6bjKVJdoocuGBzgyTIu4MaMJ-t" "url" => "https://commons.wikimedia.org/wiki/File:Eiffel_tower.svg" ] detailedDescription: array:3 [ "articleBody" => "The Eiffel Tower is a wrought-iron lattice tower on the Champ de Mars in Paris, France. It is named after the engineer Gustave Eiffel, whose company designed an ▶" "url" => "https://en.wikipedia.org/wiki/Eiffel_Tower" "license" => "https://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License" ] url: "http://www.eiffel-tower.com/" } */
Testing
API_KEY=YOUR_API_KEY vendor/bin/phpunit
Contribution
If you find a bug or want to contribute to the code or documentation, you can help by submitting an issue or a pull request.
License
Knowledge Graph is licensed under the MIT license.