You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -9,10 +9,7 @@ The Google API Client Library enables you to work with Google APIs such as Googl
9
9
This library is in Beta. We're comfortable enough with the stability and features of the library that we want you to build real production applications on it. We will make an effort to support the public and protected surface of the library and maintain backwards compatibility in the future. While we are still in Beta, we reserve the right to make incompatible changes. If we do remove some functionality (typically because better functionality exists or if the feature proved infeasible), our intention is to deprecate and provide ample time for developers to update their code.
$results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);
44
+
45
+
foreach ($results as $item) {
46
+
echo $item['volumeInfo']['title'], "<br /> \n";
47
+
}
43
48
```
44
49
45
50
### Service Specific Examples ###
@@ -58,7 +63,7 @@ If there is a specific bug with the library, please file a issue in the Github i
58
63
59
64
We accept contributions via Github Pull Requests, but all contributors need to be covered by the standard Google Contributor License Agreement. You can find links, and more instructions, in the documentation: https://developers.google.com/api-client-library/php/contribute
60
65
61
-
### I want an example of X! ###
66
+
### I want an example of X! ###
62
67
63
68
If X is a feature of the library, file away! If X is an example of using a specific service, the best place to go is to the teams for those specific APIs - our preference is to link to their examples rather than add them to the library, as they can then pin to specific versions of the library. If you have any examples for other APIs, let us know and we will happily add a link to the README above!
64
69
@@ -68,7 +73,7 @@ When we started working on the 1.0.0 branch we knew there were several fundament
68
73
69
74
### Why does Google_..._Service have weird names? ###
70
75
71
-
The _Service classes are generally automatically generated from the API discovery documents: https://developers.google.com/discovery/. Sometimes new features are added to APIs with unusual names, which can cause some unexpected or non-standard style naming in the PHP classes.
76
+
The _Service classes are generally automatically generated from the API discovery documents: https://developers.google.com/discovery/. Sometimes new features are added to APIs with unusual names, which can cause some unexpected or non-standard style naming in the PHP classes.
72
77
73
78
### How do I deal with non-JSON response types? ###
74
79
@@ -95,10 +100,10 @@ Run the PHPUnit tests with PHPUnit. You can configure an API key and token in Ba
0 commit comments