Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: include HTTP Transport page in navigation, add support page #854

Merged
merged 3 commits into from Oct 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/_data/navigation.yml
Expand Up @@ -9,9 +9,13 @@ toc:
url: android.html
- page: Google App Engine
url: google-app-engine.html
- page: HTTP Transport
url: http-transport.html
- page: JSON
url: json.html
- page: Exponential Backoff
url: exponential-backoff.html
- page: Unit Testing
url: unit-testing.html
url: unit-testing.html
- page: Support
url: support.html
2 changes: 1 addition & 1 deletion docs/http-transport.md
Expand Up @@ -125,7 +125,7 @@ HttpRequestFactory requestFactory = transport.createRequestFactory(new MyInitial
[http-url-connection]: http://docs.oracle.com/javase/7/docs/api/java/net/HttpURLConnection.html
[apache-http-transport]: https://googleapis.dev/java/google-http-client/latest/index.html?com/google/api/client/http/apache/v2/ApacheHttpTransport.html
[apache-http-client]: http://hc.apache.org/httpcomponents-client-ga/index.html
[url=fetch-transport]: https://googleapis.dev/java/google-http-client/latest/index.html?com/google/api/client/extensions/appengine/http/UrlFetchTransport.html
[url-fetch-transport]: https://googleapis.dev/java/google-http-client/latest/index.html?com/google/api/client/extensions/appengine/http/UrlFetchTransport.html
[url-fetch]: https://cloud.google.com/appengine/docs/java/javadoc/com/google/appengine/api/urlfetch/package-summary
[logger]: https://docs.oracle.com/javase/7/docs/api/java/util/logging/Logger.html
[logging-properties]: https://github.com/google/google-http-java-client/blob/master/samples/googleplus-simple-cmdline-sample/logging.properties
Expand Down
45 changes: 45 additions & 0 deletions docs/support.md
@@ -0,0 +1,45 @@
---
title: Support
---

# Support

## The Google HTTP Client Library for Java Community

### Ask development questions

Ask questions on StackOverflow:

* Use the [google-api][so-google-api] tag, and optionally [java][so-java] or [android][so-android]
chingor13 marked this conversation as resolved.
Show resolved Hide resolved
or [java google-app-engine][so-java-gae].
* You can also use the [google-http-java-client][so-http-client] tag.
chingor13 marked this conversation as resolved.
Show resolved Hide resolved
* For tips on asking StackOverflow questions, see [How to Ask][so-how-to-ask].

**Note:** Please do not email the project contributors directly.

### File feature requests and defects

You can suggest features and report issues on our public [Issue Tracker][issues]. This is a great
place for the community to discuss and track implementations of features or resolution of bug fixes,
as well as share workarounds and patches.

If you find a bug:

* View [known bugs][issues], and if a known bug corresponds to the issue you are seeing, "star" it
or comment on it.
* If the issue you are seeing has not yet been reported, [file a bug report][new-issue].

### Contribute

This is an [open-source][http-client] library, and [contributions][contributions] are welcome.

[so-google-api]: http://stackoverflow.com/questions/tagged/google-api
[so-java]: http://stackoverflow.com/questions/tagged/google-api+java
[so-android]: http://stackoverflow.com/questions/tagged/google-api+android
[so-java-gae]: http://stackoverflow.com/questions/tagged/google-api+java+google-app-engine
[so-http-client]: http://stackoverflow.com/questions/tagged/google-http-java-client
[so-how-to-ask]: http://stackoverflow.com/questions/ask
[issues]: https://github.com/googleapis/google-http-java-client/issues
[new-issue]: https://github.com/google/google-http-java-client/issues/new
[http-client]: https://github.com/googleapis/google-http-java-client
[contributions]: https://github.com/googleapis/google-http-java-client/blob/master/CONTRIBUTING.md