All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.websudos.util.http.HttpExtractor.scala Maven / Gradle / Ivy

The newest version!
package com.websudos.util.http

trait HttpExtractor {

  def extractTokenResponse(response: String): Map[String, String] = {
    val params = (for {
      x <- response split "&"
      Array(k, v) = x split "="
    } yield k -> v).toMap
    params
  }
}

object HttpExtractor extends HttpExtractor




© 2015 - 2025 Weber Informatics LLC | Privacy Policy