private def makeRequestUrl()

in src/main/scala/com/gu/googleamp/AmpFlusher.scala [57:63]


  private def makeRequestUrl(contentId: String, timestamp: Long): String = {
    val cacheUpdateRequestURL =
      s"/update-cache/c/s/amp.theguardian.com/${contentId}?amp_action=flush&amp_ts=${timestamp}"
    val signature =
      computeSignature(cacheUpdateRequestURL.getBytes, getPrivateKey())
    s"https://amp-theguardian-com.cdn.ampproject.org${cacheUpdateRequestURL}&amp_url_signature=${signatureAsWebSafeString(signature)}"
  }