简体   繁体   中英

RingCentral incoming call notification

I am developing a winform application to get incoming call notification in real time. I am getting error on authorise method

在此处输入图片说明 Below is my code snippet

 private async void button1_Click(object sender, EventArgs e)
    {

        //rc = new RestClient(txtClientID.Text, txtClientSecrete.Text, !chkIsSandBox.Checked);
        rc = new RestClient(txtClientID.Text, txtClientSecrete.Text);
        await  rc.Authorize(txtUsrName.Text, txtExtension.Text, txtPWD.Text);

        RegisterSubscription();


    }

    async void RegisterSubscription()
    {
        var subscription = rc.Restapi().Subscription().New();

        //subscription.EventFilters.Add("/restapi/v1.0/account/~/extension/~/message-store");

        subscription.EventFilters.Add("/restapi/v1.0/account/~/extension/~/presence");

        subscription.PresenceEvent += subscription_PresenceEvent;

        await subscription.Register();
    }

    void subscription_PresenceEvent(object sender, SubscriptionEventArgs e)
    {
        rtLog.Text += e.Message;
    }
    private async Task<TokenInfo> Authorize()
    {

        return await rc.Authorize(txtUsrName.Text, txtExtension.Text, txtPWD.Text);

    }

I would like to receive notification for incoming call.

Thanks in advance.

Thanks for posting your answer on GitHub, Shridhar. I posted it here so people can find it if they run into the same issue:

I was able to resolve this by adding assembly to the GAC using Gacutil.exe .

https://github.com/ringcentral/ringcentral-csharp-client/issues/32

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM