Skip to content

Instantly share code, notes, and snippets.

@Priyansh-Kedia
Last active September 3, 2021 18:56
Show Gist options
  • Save Priyansh-Kedia/1b39737e8957cea569e7c9d6d63b14ec to your computer and use it in GitHub Desktop.
Save Priyansh-Kedia/1b39737e8957cea569e7c9d6d63b14ec to your computer and use it in GitHub Desktop.
Variable names for OGP
private val AGENT = "Mozilla"
private val REFERRER = "http://www.google.com"
private val TIMEOUT = 10000
private val DOC_SELECT_QUERY = "meta[property^=og:]"
private val OPEN_GRAPH_KEY = "content"
private val PROPERTY = "property"
private val OG_IMAGE = "og:image"
private val OG_DESCRIPTION = "og:description"
private val OG_URL = "og:url"
private val OG_TITLE = "og:title"
private val OG_SITE_NAME = "og:site_name"
private val OG_TYPE = "og:type"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment