A search interface for data from the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office API. https://patents.copim.ac.uk
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

53 行
1.7KB

  1. <?php
  2. function get_access_token() {
  3. // OPS API credentials (details at http://documents.epo.org/projects/babylon/eponet.nsf/0/F3ECDCC915C9BCD8C1258060003AA712/$File/ops_v3.2_documentation_-_version_1.3.16_en.pdf)
  4. $ops_url = $_ENV["OPS_URL"] . '3.2/auth/accesstoken';
  5. $auth = base64_encode($_ENV["CONSUMER_KEY"] . ":" . $_ENV["CONSUMER_SECRET"]);
  6. // Set up API call
  7. $ch = curl_init();
  8. curl_setopt($ch, CURLOPT_URL, $ops_url);
  9. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  10. curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: Basic $auth","Content-Type: application/x-www-form-urlencoded"));
  11. curl_setopt($ch, CURLOPT_POSTFIELDS, 'grant_type=client_credentials');
  12. curl_setopt($ch, CURLOPT_POST, true);
  13. // Give back curl result
  14. $response = curl_exec($ch);
  15. curl_close($ch);
  16. // Turn the API response into useful Json
  17. $json = json_decode($response);
  18. $access_token = $json->access_token;
  19. return $access_token;
  20. }
  21. function get_publication_details($document_reference) {
  22. $access_token = get_access_token();
  23. // OPS API credentials (details at http://documents.epo.org/projects/babylon/eponet.nsf/0/F3ECDCC915C9BCD8C1258060003AA712/$File/ops_v3.2_documentation_-_version_1.3.16_en.pdf)
  24. $ops_url = $_ENV["OPS_URL"] . 'rest-services/published-data/publication/epodoc/' . $document_reference . '/biblio';
  25. // Set up API call
  26. $ch = curl_init();
  27. curl_setopt($ch, CURLOPT_URL, $ops_url);
  28. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  29. curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: Bearer $access_token"));
  30. // Give back curl result
  31. $response = curl_exec($ch);
  32. curl_close($ch);
  33. if (strpos($response,"No results found") === false ) {
  34. print_r($response);
  35. }
  36. }
  37. ?>