はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    参議院選挙2025

『oauth.googlecode.com』

  • 人気
  • 新着
  • すべて
  • http://oauth.googlecode.com/svn/code/php/OAuth.php

    3 users

    oauth.googlecode.com

    key = $key; $this->secret = $secret; $this->callback_url = $callback_url; } function __toString() { return "OAuthConsumer[key=$this->key,secret=$this->secret]"; } } class OAuthToken { // access tokens and request tokens public $key; public $secret; /** * key = the token * secret = the token secret */ function __construct($key, $secret) { $this->key = $key; $this->secret = $secret; } /** * generate

    • 世の中
    • 2009/12/17 14:47
    • OAuth
    • php
    • lib
    • Final: OAuth Request Body Hash

      5 users

      oauth.googlecode.com

      Abstract This specification extends the OAuth signature to include integrity checks on HTTP request bodies with content types other than application/x-www-form-urlencoded. Table of Contents 1.  Introduction 2.  Notation and Conventions 3.  The oauth_body_hash Parameter 3.1.  Hash Algorithm 3.2.  Hash Calculation 4.  Changes to OAuth Request Signing 4.1.  Sending Requests 4.1.1.  When to Inc

      • テクノロジー
      • 2009/07/30 06:40
      • OAuth
      • security
      • programming
      • webサービス
      • あとで読む
      • Implementers' Draft: Using OAuth for Consumer Requests

        4 users

        oauth.googlecode.com

        Abstract This memo describes a method for using the OAuth flow to sign a request made between a Consumer and Service Provider without User involvement, which is either absent or handled by other means. It enables OAuth to be used as a replacement to HTTP Basic authentication and extends the capabilities of the OAuth Consumer credentials. OAuth Core 1.0 defines a protocol for delegating user access

        • テクノロジー
        • 2009/07/14 16:50
        • OAuth
        • Implementer Draft: OAuth Core 1.0 Rev A (Draft 3)

          6 users

          oauth.googlecode.com

          Abstract The OAuth protocol enables websites or applications (Consumers) to access Protected Resources from a web service (Service Provider) via an API, without requiring Users to disclose their Service Provider credentials to the Consumers. More generally, OAuth creates a freely-implementable and generic methodology for API authentication. An example use case is allowing printing service printer.

          • 学び
          • 2009/05/20 05:15
          • oauth
          • Implementers' Draft: OAuth Session 1.0 Draft 1

            5 users

            oauth.googlecode.com

            Abstract This specification defines the concept of an Authorization Session which represents the authorization granted to the Consumer to access Protected Resources on behalf of the User. OAuth Core 1.0 assumes that the Authorization Session lifetime and the Access Token lifetime are equal. This specification defines a mechanism for Service Providers to issue Access Tokens with shorter life

            • 学び
            • 2009/04/20 11:30
            • oauth
            • Implementers' Draft: OAuth Request Body Hash 1.0 Draft 4

              3 users

              oauth.googlecode.com

              Abstract This specification extends the OAuth signature to include integrity checks on HTTP request bodies with content types other than application/x-www-form-urlencoded. Table of Contents 1.  Notation and Conventions 2.  Introduction 3.  The oauth_body_hash Parameter 3.1.  Hash Algorithm 3.2.  Signing the Request 3.3.  Verifying the Request 4.  Example 5.  Security Considerations Appendi

              • 世の中
              • 2009/03/27 16:47
              • oauth
              • http://oauth.googlecode.com/svn/code/javascript/oauth.js

                3 users

                oauth.googlecode.com

                /* * Copyright 2008 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, *

                • 学び
                • 2009/02/13 21:08
                • oauth
                • javascript
                • lib
                • http://oauth.googlecode.com/svn/code/python/oauth/

                  3 users

                  oauth.googlecode.com

                  • 世の中
                  • 2009/02/12 15:45
                  • OAuth
                  • Python
                  • http://oauth.googlecode.com/svn/code/javascript/

                    32 users

                    oauth.googlecode.com

                    • 世の中
                    • 2008/09/02 10:22
                    • oauth
                    • javascript
                    • library
                    • js
                    • Twitter
                    • code
                    • jQuery
                    • プログラミング
                    • Implementers' Draft: OAuth Consumer Request 1.0 Draft 1

                      15 users

                      oauth.googlecode.com

                      Abstract This memo describes a method for using the OAuth flow to sign a request made between a Consumer and Service Provider where no User is involved. This enables OAuth to be used as a replacement to HTTP Basic authentication, which is not as complex as HTTP Digest authentication, and extends the capabilities of the OAuth Consumer credentials. OAuth Core 1.0 defines a protocol for delegating us

                      • 学び
                      • 2008/06/13 12:35
                      • oauth
                      • opensocial
                      • service
                      • http://oauth.googlecode.com/svn/code/php/

                        7 users

                        oauth.googlecode.com

                        • テクノロジー
                        • 2008/01/25 01:03
                        • php

                        このページはまだ
                        ブックマークされていません

                        このページを最初にブックマークしてみませんか?

                        『oauth.googlecode.com』の新着エントリーを見る

                        キーボードショートカット一覧

                        j次のブックマーク

                        k前のブックマーク

                        lあとで読む

                        eコメント一覧を開く

                        oページを開く

                        はてなブックマーク

                        • 総合
                        • 一般
                        • 世の中
                        • 政治と経済
                        • 暮らし
                        • 学び
                        • テクノロジー
                        • エンタメ
                        • アニメとゲーム
                        • おもしろ
                        • アプリ・拡張機能
                        • 開発ブログ
                        • ヘルプ
                        • お問い合わせ
                        • ガイドライン
                        • 利用規約
                        • プライバシーポリシー
                        • 利用者情報の外部送信について
                        • ガイドライン
                        • 利用規約
                        • プライバシーポリシー
                        • 利用者情報の外部送信について

                        公式Twitter

                        • 公式アカウント
                        • ホットエントリー

                        はてなのサービス

                        • はてなブログ
                        • はてなブログPro
                        • 人力検索はてな
                        • はてなブログ タグ
                        • はてなニュース
                        • ソレドコ
                        • App Storeからダウンロード
                        • Google Playで手に入れよう
                        Copyright © 2005-2025 Hatena. All Rights Reserved.
                        設定を変更しましたx