-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADDED] #5 Generated client library from
https://developer.nytimes.c…
…om/top_stories_v2.json/swagger.json` using following command ``` java -jar swagger-codegen-cli-v2.3.0-local-snapshot-20160919.jar generate --input-spec swagger-ny-times-top-stories.json --lang java --library retrofit2 --output nytimes-client ```
- Loading branch information
1 parent
7248303
commit 8db35f7
Showing
20 changed files
with
2,235 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
# Article | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**section** | **String** | | [optional] | ||
**subsection** | **String** | | [optional] | ||
**title** | **String** | | [optional] | ||
**_abstract** | **String** | | [optional] | ||
**url** | **String** | | [optional] | ||
**thumbnailStandard** | **String** | | [optional] | ||
**shortUrl** | **String** | | [optional] | ||
**byline** | **String** | | [optional] | ||
**itemType** | **String** | | [optional] | ||
**updatedDate** | **String** | | [optional] | ||
**createdDate** | **String** | | [optional] | ||
**publishedDate** | **String** | | [optional] | ||
**materialTypeFacet** | **String** | | [optional] | ||
**kicker** | **String** | | [optional] | ||
**desFacet** | **List<String>** | | [optional] | ||
**orgFacet** | **String** | | [optional] | ||
**perFacet** | **List<String>** | | [optional] | ||
**geoFacet** | **List<String>** | | [optional] | ||
**multimedia** | [**List<ArticleMultimedia>**](ArticleMultimedia.md) | | [optional] | ||
**relatedUrls** | [**List<ArticleRelatedUrls>**](ArticleRelatedUrls.md) | | [optional] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
# ArticleMultimedia | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**url** | **String** | | [optional] | ||
**format** | **String** | | [optional] | ||
**height** | **Integer** | | [optional] | ||
**width** | **Integer** | | [optional] | ||
**type** | **String** | | [optional] | ||
**subtype** | **String** | | [optional] | ||
**caption** | **String** | | [optional] | ||
**copyright** | **String** | | [optional] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
# ArticleRelatedUrls | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**suggestedLinkText** | **String** | | [optional] | ||
**url** | **String** | | [optional] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
# InlineResponse200 | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**results** | [**List<Article>**](Article.md) | | [optional] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# StoriesApi | ||
|
||
All URIs are relative to *http://api.nytimes.com/svc/topstories/v2/* | ||
|
||
Method | HTTP request | Description | ||
------------- | ------------- | ------------- | ||
[**sectionFormatGet**](StoriesApi.md#sectionFormatGet) | **GET** {section}.{format} | Top Stories | ||
|
||
|
||
<a name="sectionFormatGet"></a> | ||
# **sectionFormatGet** | ||
> InlineResponse200 sectionFormatGet(section, format, callback) | ||
Top Stories | ||
|
||
The Top Stories API provides JSON and JSONP lists of articles and associated images by section. | ||
|
||
### Example | ||
```java | ||
// Import classes: | ||
//import io.swagger.client.ApiClient; | ||
//import io.swagger.client.ApiException; | ||
//import io.swagger.client.Configuration; | ||
//import io.swagger.client.auth.*; | ||
//import io.swagger.client.api.StoriesApi; | ||
|
||
ApiClient defaultClient = Configuration.getDefaultApiClient(); | ||
|
||
// Configure API key authorization: apikey | ||
ApiKeyAuth apikey = (ApiKeyAuth) defaultClient.getAuthentication("apikey"); | ||
apikey.setApiKey("YOUR API KEY"); | ||
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) | ||
//apikey.setApiKeyPrefix("Token"); | ||
|
||
StoriesApi apiInstance = new StoriesApi(); | ||
String section = "section_example"; // String | The section the story appears in. | ||
String format = "format_example"; // String | if this is JSONP or JSON | ||
String callback = "callback_example"; // String | The name of the function the API call results will be passed to. Required when using JSONP. This parameter has only one valid value per section. The format is {section_name}TopStoriesCallback. | ||
try { | ||
InlineResponse200 result = apiInstance.sectionFormatGet(section, format, callback); | ||
System.out.println(result); | ||
} catch (ApiException e) { | ||
System.err.println("Exception when calling StoriesApi#sectionFormatGet"); | ||
e.printStackTrace(); | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
Name | Type | Description | Notes | ||
------------- | ------------- | ------------- | ------------- | ||
**section** | **String**| The section the story appears in. | [enum: home, opinion, world, national, politics, upshot, nyregion, business, technology, science, health, sports, arts, books, movies, theater, sundayreview, fashion, tmagazine, food, travel, magazine, realestate, automobiles, obituaries, insider] | ||
**format** | **String**| if this is JSONP or JSON | [enum: json, jsonp] | ||
**callback** | **String**| The name of the function the API call results will be passed to. Required when using JSONP. This parameter has only one valid value per section. The format is {section_name}TopStoriesCallback. | [optional] | ||
|
||
### Return type | ||
|
||
[**InlineResponse200**](InlineResponse200.md) | ||
|
||
### Authorization | ||
|
||
[apikey](../README.md#apikey) | ||
|
||
### HTTP request headers | ||
|
||
- **Content-Type**: Not defined | ||
- **Accept**: application/json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="info.hossainkhan.android.api.core"> | ||
|
||
<application android:allowBackup="true" | ||
android:supportsRtl="true" | ||
> | ||
|
||
</application> | ||
|
||
<manifest package="io.swagger.client" xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<application /> | ||
</manifest> |
Oops, something went wrong.