1

ウェブサイト開発で FitBit API を使用しようとしています。ゼロからウェブサイトを作成したいのですが、作成できません。

ここで説明する手順に従い、ここで説明するアイデアに基づいて Visual Studio で VB.NET Web サイトを作成しました。OauthNET-Release ライブラリをダウンロードし、DLL をプロジェクトに参照しました。web.config は次のようになります。

<?xml version="1.0"?>

<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->

<!--<configuration>
  <connectionStrings>
    <add name="ApplicationServices"
         connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true"
         providerName="System.Data.SqlClient" />
  </connectionStrings>

  <system.web>
    <compilation debug="false" strict="false" explicit="true" targetFramework="4.0" />

    <authentication mode="Forms">
      <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
    </authentication>

    <membership>
      <providers>
        <clear/>
        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
             enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
             maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
             applicationName="/" />
      </providers>
    </membership>

    <profile>
      <providers>
        <clear/>
        <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
      </providers>
    </profile>

    <roleManager enabled="false">
      <providers>
        <clear/>
        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
        <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
      </providers>
    </roleManager>

  </system.web>

  <system.webServer>
     <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>-->

<configuration>
  <configSections>
    <section name="foo" type="bar"/>
    <!-- lines omitted -->
  </configSections>
  <oauth.net.components>
    <!-- Components -->
    <components>
      <!-- Signing provider for HMAC-SHA1 -->
      <component service="OAuth.Net.Common.ISigningProvider, OAuth.Net.Common" lifestyle="thread"/>
      <!-- Nonce provider -->
      <component service="OAuth.Net.Common.INonceProvider, OAuth.Net.Common"/>
      <!-- State store -->
      <component service="OAuth.Net.Consumer.IRequestStateStore, OAuth.Net.Consumer"/>
    </components>
  </oauth.net.components>
  <!-- lines omitted -->
</configuration>

Web サイトを構築しようとしましたが、成功せず、次のメッセージを受け取りました。

Error   11  Unrecognized configuration section oauth.net.components.

私の質問は次のとおりです。これを機能させるにはどうすればよいですか? 前もって感謝します。

4

1 に答える 1

1

セクション登録を webconfig に追加しました<configSections>か? このような:

<configSections>
  <section name="oauth.net.components" type="Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor"/>
  <!-- other stuff -->
</configSections>
于 2012-07-13T08:08:34.630 に答える