簡體   English   中英

原生消息Chrome

[英]Native Messaging Chrome

我試圖在我的chrome擴展和我的c#應用程序之間獲取Native Messaging。 javascript工作正常,但我收到此錯誤:

與本機消息傳遞主機通信時出錯。

正如我從任務管理器中看到的那樣,應用程序與擴展一起啟動。 這是我的c#代碼。

private static string OpenStandardStreamIn()
{
    //// We need to read first 4 bytes for length information
    Stream stdin = Console.OpenStandardInput();
    int length = 0;
    byte[] bytes = new byte[4];
    stdin.Read(bytes, 0, 4);
    length = System.BitConverter.ToInt32(bytes, 0);

    string input = "";
    for (int i = 0; i < length;i++ )    
    {
        input += (char)stdin.ReadByte();
    }

    return input;  
}

private static void OpenStandardStreamOut(string stringData)
{
    //// We need to send the 4 btyes of length information
    string msgdata = "{\"text\":\"" + stringData + "\"}";
    int DataLength = stringData.Length;
    Stream stdout = Console.OpenStandardOutput();
    stdout.WriteByte((byte)((DataLength >> 0) & 0xFF));
    stdout.WriteByte((byte)((DataLength >> 8) & 0xFF));
    stdout.WriteByte((byte)((DataLength >> 16) & 0xFF));
    stdout.WriteByte((byte)((DataLength >> 24) & 0xFF));
    //Available total length : 4,294,967,295 ( FF FF FF FF )
    Console.Write(msgdata);
}

主要功能:

static void Main(string[] args)
{
    string message = "test message from native app.";
    OpenStandardStreamOut(message);

    while (OpenStandardStreamIn() != null || OpenStandardStreamIn() != "")
    {
        OpenStandardStreamOut("Received to Native App: " + OpenStandardStreamIn());
        OpenStandardStreamOut("Recieved: " + OpenStandardStreamIn());  
    }
}

JS代碼:

var host_name = "com.example.native";
var port = null;

connectToNative();
function connectToNative() {
    console.log('Connecting to native host: ' + host_name);
    port = chrome.runtime.connectNative(host_name);
    port.onMessage.addListener(onNativeMessage);
    port.onDisconnect.addListener(onDisconnected);
    sendNativeMessage("test");
}

function sendNativeMessage(msg) {
    message = {"text" : msg};
    console.log('Sending message to native app: ' + JSON.stringify(message));
    port.postMessage(message);
    console.log('Sent message to native app: ' + msg);
}

function onNativeMessage(message) {
    console.log('recieved message from native app: ' + JSON.stringify(msg));
}

function onDisconnected() {
    console.log(chrome.runtime.lastError);
    console.log('disconnected from native app.');
    port = null;
}

主機清單:

{
  "name": "com.example.native",
  "description": "Native support for Chrome Extension",
  "path": "NativeApp.exe",
  "type": "stdio",
  "allowed_origins": [
    "chrome-extension://ajfkjfmkedgcgdckdkmppfblonpeench/"
  ]
}  

是的,因為你發送了錯誤的數據長度。 更改stringData.Lengthmsgdata.LengthOpenStandardStreamOut功能。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM