anandwana001 / ogTagParser

📲 Kotlin library to parse open graph tags

Home Page:http://anandwana001.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ogTagParser

Kotlin library to parse open graph meta tags (ogTags) from given URL.

License

Getting Started

NOTE: This library is not hosted anywhere as of now.

Pass the URL and get the Data

val content = OgTagParser().getContents(URL_TO_PARSE)
content?.let {
  val title = content.ogTitle,
  val description = content.ogDescription,
  val url = content.ogUrl,
  val site_name = content.ogSiteName,
  val type = content.ogType,
  val image = content.image
)

If this library helps you in anyway, show your love ❤️ by putting a ⭐ on this project ✌️

Contribute

Love to see the contribution and build this repo a more better version. So if you have any issues, new ideas about implementations then just raise issue and we are open for Pull Requests. Improve and make it happen. See Contributing Guidelines.

License

License

About

📲 Kotlin library to parse open graph tags

http://anandwana001.github.io/

License:Apache License 2.0


Languages

Language:Kotlin 100.0%