Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getProductReviews (0.38 sec)

  1. samples/bookinfo/src/productpage/productpage.py

        session.pop('user', None)
        return response
    
    # a helper function for asyncio.gather, does not return a value
    
    
    async def getProductReviewsIgnoreResponse(product_id, headers):
        getProductReviews(product_id, headers)
    
    # flood reviews with unnecessary requests to demonstrate Istio rate limiting, asynchoronously
    
    
    async def floodReviewsAsynchronously(product_id, headers):
        # the response is disregarded
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. samples/bookinfo/swagger.yaml

        get:
          tags:
          - "review"
          summary: "Get reviews for a product"
          description: "Get reviews for a product, including review text and possibly ratings information."
          operationId: "getProductReviews"
          consumes:
          - "application/json"
          produces:
          - "application/json"
          parameters:
          - name: "id"
            in: "path"
            description: "Product id"
            required: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
Back to top