Home | History | Annotate | Download | only in oauth

Lines Matching defs:timestamp

463    * util function: current timestamp
636 $timestamp = $request instanceof OAuthRequest
643 $this->check_timestamp($timestamp);
644 $this->check_nonce($consumer, $token, $nonce, $timestamp);
662 * check that the timestamp is new enough
664 private function check_timestamp($timestamp) {
665 if( ! $timestamp )
667 'Missing timestamp parameter. The parameter is required'
670 // verify that timestamp is recentish
672 if (abs($now - $timestamp) > $this->timestamp_threshold) {
674 "Expired timestamp, yours $timestamp, ours $now"
682 private function check_nonce($consumer, $token, $nonce, $timestamp) {
693 $timestamp
711 function lookup_nonce($consumer, $token, $nonce, $timestamp) {