Skip to content

Commit 6a8d912

Browse files
authored
Add SEO tags to .md files (#272)
* Add title tag and meta description to index.md * Add title tag to quick-start.md * Update title tag to pricing.md * Add title tag to pricing.md * Add title tag to test-data.md * Add title tag to API-Keys/index.md * Add title tag to API-Keys/ authorization.md * Add title tag to API-Keys/moving-to-production.md * Add title tag to api-rate-limits.md * Add title tag to pagination.md * Add title tag to common-errors.md * Add title tag to resources/index.md * Add title tag to resources/flights.md * Add title tag to resources/hotels.md * Add title tag to resources/destination-experiences.md * Add title tag to resources/market-insight.md * Add title tag to resources/cars-transfers.md * Add title tag to resources/itinerary-managment.md * Add title tag to developer-tools/index.md * Add title tag to developer-tools/node.md * Add title tag to developer-tools/python.md * Add title tag to developer-tools/java.md * Add title tag to developer-tools/php.md * Add title tag to developer-tools/openapi-generator.md * Add title tag to developer-tools/postman.md * Add title tag to developer-tools/mock-server.md * Add title tag to developer-tools/graphql/index.md * Add title tag to developer-tools/graphql/rest-to-graphql-node.md * Add title tag to developer-tools/graphql/rest-to-graphql-python.md * Add title tag to developer-tools/graphql/rest-to-graphql-export.md * Add title tag to examples/index.md * Add title tag to examples/code-example.md * Add title tag to examples/live-examples.md * Add title tag to examples/prototypes.md * Add title tag to faq.md * Add title tag to migration-guides/index.md * Add title tag to migration-guides/hotel-search.md * Add title tag to migration-guides/hotel-booking.md * Add title tag to API-Keys/index.md
1 parent d435573 commit 6a8d912

37 files changed

+161
-13
lines changed

docs/API-Keys/authorization.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: API Keys Authorization - Oauth Authentication - Access Token
3+
---
4+
15
# Authorizing your application
26

37
Amadeus for Developers uses `OAuth` to authenticate access requests. `OAuth` generates an `access token` which grants the client permission to access a protected resource.

docs/API-Keys/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: How to Get your API Keys
3+
---
4+
15
# API keys
26

37
To start working with our Self-Service APIs, you need to register your application with us to obtain API keys. In this section we describe how to [authorize your application](./authorization.md) and [move it to production](moving-to-production.md).

docs/API-Keys/moving-to-production.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: API Keys for the Production Environment
3+
---
4+
15
# Moving your application to production
26

37
When your application is ready to be deployed to the Real World™, you can request your Production Key and access the `Production Environment`.

docs/api-rate-limits.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: API Rate Limits
3+
---
4+
15
# Rate limits
26

37
## Rate limits per API
@@ -38,4 +42,4 @@ To manage the rate limits in APIs, there are mainly two options:
3842

3943
The right choice depends on your resources and requisites.
4044

41-
Check out the [rate limits examples](https://github.com/amadeus4dev-examples/APIRateLimits){:target="\_blank"} in Node, Python and Java using the respective [Amadeus SDKs](./developer-tools/index.md).
45+
Check out the [rate limits examples](https://github.com/amadeus4dev-examples/APIRateLimits){:target="\_blank"} in Node, Python and Java using the respective [Amadeus SDKs](./developer-tools/index.md).

docs/common-errors.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Common Errors - REST API Response Codes
3+
---
4+
15
# Common client and server errors
26

37
Amadeus for Developers Self-Service APIs use HTTP status codes to communicate whether a request has been successfully processed.
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: GraphQL Tutorials
3+
---
4+
15
# GraphQL Resources
26

37
Explore our collection of GraphQL resources, including guides on creating GraphQL wrappers for REST APIs and converting OpenAPI specifications into GraphQL schemas.
@@ -6,4 +10,4 @@ Explore our collection of GraphQL resources, including guides on creating GraphQ
610
| ------- | ----------- |
711
| [GraphQL wrapper for REST (Node)](./rest-to-graphql-node.md) | This article provides a guide on how to create a GraphQL wrapper for a REST API using Node.js. |
812
| [GraphQL wrapper for REST (Python)](./rest-to-graphql-python.md) | Learn how to create a GraphQL wrapper for a REST API using Python. |
9-
| [OpenAPI to GraphQL converter](./rest-to-graphql-export.md) | Discover how to convert an OpenAPI Specification into a GraphQL schema, enabling seamless integration of GraphQL with existing REST APIs. |
13+
| [OpenAPI to GraphQL converter](./rest-to-graphql-export.md) | Discover how to convert an OpenAPI Specification into a GraphQL schema, enabling seamless integration of GraphQL with existing REST APIs. |

docs/developer-tools/graphql/rest-to-graphql-export.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: OpenAPI to GraphQL Converter Tutorial
3+
---
4+
15
# Convert an OpenAPI specification to a GraphQL schema
26

37
Follow this tutorial to learn how to convert an OpenAPI specification to a GraphQL schema.

docs/developer-tools/graphql/rest-to-graphql-node.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: GraphQL Wrapper for REST APIs Node Tutorial
3+
---
4+
15
# Wrap a REST API endpoint with GraphQL in Node.js
26

37
Follow this tutorial to wrap a REST API endpoint with a GraphQL wrapper to make it accessible via a dedicated GraphQL API.

docs/developer-tools/graphql/rest-to-graphql-python.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: GraphQL Wrapper for REST APIs Python Tutorial | Amadeus for Developers
3+
---
4+
15
# Wrap a REST API endpoint with GraphQL in Python
26

37
Follow this tutorial to wrap a REST API endpoint with a GraphQL wrapper to make it accessible via a dedicated GraphQL API.

docs/developer-tools/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: SDK Tutorials
3+
---
4+
15
# Amadeus SDKs Tutorials
26

37
We have a number of SDKs available to help you integrate Amadeus Self-Service APIs into your applications. To give more context to how each of the SDKs can be used, we also have a dedicated tutorial per programming language.
@@ -9,4 +13,4 @@ We have a number of SDKs available to help you integrate Amadeus Self-Service AP
913
| [Java SDK](https://github.com/amadeus4dev/amadeus-java){:target="\_blank"}| [Java SDK tutorial](java.md) | [Java SDK example](https://github.com/amadeus4dev/amadeus-java-getting-started){:target="\_blank"}| `Amadeus` |
1014
| [PHP SDK](https://github.com/amadeus4dev-examples/amadeus-php){:target="\_blank"}| [PHP SDK tutorial](php.md) | N/A | `community` |
1115

12-
If you need an SDK in a different language, feel free to use the [OpenAPI Generator](https://openapi-generator.tech/){:target="\_blank"} to automatically create an SDK from our [OpenAPI Specification files](https://github.com/amadeus4dev/amadeus-open-api-specification){:target="\_blank"}. We also have a [tutorial](openapi-generator.md) on how to do this.
16+
If you need an SDK in a different language, feel free to use the [OpenAPI Generator](https://openapi-generator.tech/){:target="\_blank"} to automatically create an SDK from our [OpenAPI Specification files](https://github.com/amadeus4dev/amadeus-open-api-specification){:target="\_blank"}. We also have a [tutorial](openapi-generator.md) on how to do this.

0 commit comments

Comments
 (0)