Skip to content

Commit

Permalink
docs: include HTTP Transport page in navigation, add support page (#854)
Browse files Browse the repository at this point in the history
* docs: include HTTP Transport page in navigation

* docs: add support page

* docs: fix casing, typo
  • Loading branch information
chingor13 committed Oct 23, 2019
1 parent 5253c6c commit 57fd1d8
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.
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]
or [java google-app-engine][so-java-gae].
* You can also use the [google-http-java-client][so-http-client] tag.
* 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

0 comments on commit 57fd1d8

Please sign in to comment.