1

App.net https://github.com/appdotnet/api-specのすべてのメソッドにアクセスするためのライブラリを完成させ、クライアントへの追加を開始しました。

しかし、ユーザーを承認するには、 http://www.app.net/のサブページを指す WebBrowser を開く必要があります。しかし、app.net ドメイン内のすべての URL が、私が使用している WebBrowser コントロール内で間違ってレンダリングされているため (ほとんどの場合、CSS と JavaScript が欠落していると思われます)、先に進むことができません。

私が何を変更できるか考えている人はいますか (すでに FullTrust でプレイしています)。Internet Explorer で同じページを開くと、問題なく動作します。

私の簡単なテストウィンドウのコードは次のとおりです。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Security.Permissions;

namespace NymphAppNetTester
{
    /// <summary>
    /// Interaction logic for BrowserTest.xaml
    /// </summary>
    /// 

    [PermissionSet(SecurityAction.Demand, Name = "FullTrust")]

    public partial class BrowserTest : Window
    {

        [PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
        public BrowserTest()
        {
            InitializeComponent();

            buttonGo_Click_1(null, null);
        }

        private void buttonGo_Click_1(object sender, RoutedEventArgs e)
        {
            webbrowserTest.Navigate(textboxUrl.Text);
        }
    }
}

および XAML

<Window x:Class="NymphAppNetTester.BrowserTest"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="BrowserTest" Height="478.723" Width="565.35">
    <Grid>
        <TextBox x:Name="textboxUrl" Height="23" Margin="10,10,58.2,0" TextWrapping="Wrap" VerticalAlignment="Top" Text="http://www.app.net/"/>
        <WebBrowser x:Name="webbrowserTest" Margin="10,38,10.2,10.4"/>
        <Button x:Name="buttonGo" Content="Go" HorizontalAlignment="Right" Margin="0,11,10.2,0" VerticalAlignment="Top" Width="43" Click="buttonGo_Click_1"/>

    </Grid>
</Window>
4

0 に答える 0