- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/twitter/joauth
软件介绍
joauth 是 Java 实现用来解析和验证 OAuth 请求的类库。
示例代码:
import com.twitter.joauth.{Verifier, VerifierResult}
val verify = Verifier()
verify(oAuth1Request, tokenSecret, consumerSecret) match {
case VerifierResult.BAD_NONCE => // handle bad nonce
case VerifierResult.BAD_SIGNATURE => // handle bad signature
case VerifierResult.BAD_TIMESTAMP => // handle bad timestamp
case VerifierResult.OK => //success!
}
Algorithms on Strings, Trees and Sequences
Dan Gusfield / Cambridge University Press / 1997-5-28 / USD 99.99
String algorithms are a traditional area of study in computer science. In recent years their importance has grown dramatically with the huge increase of electronically stored text and of molecular seq......一起来看看 《Algorithms on Strings, Trees and Sequences》 这本书的介绍吧!
URL 编码/解码
URL 编码/解码
XML、JSON 在线转换
在线XML、JSON转换工具
