question

Maksym Fomichov avatar image
Maksym Fomichov asked Phong Vu answered

rcsdk in Send_SMS program have errors

In this code, I get the error for rcsdk.token.access_token.Length and rcsdk.Restapi().Account().Extension().PhoneNumber().Get(); like "The name 'rcsdk' doesn't exist in the current context"

static private async Task read_extension_phone_number()
        {
            if (rcsdk.token.access_token.Length > 0)
            {
                var resp = await rcsdk.Restapi().Account().Extension().PhoneNumber().Get();
                foreach (var record in resp.records)
                {
                    if (record.usageType == "DirectNumber")
                    {
                        foreach (var feature in record.features)
                        {
                            if (feature == "SmsSender")
                            {
                                send_sms(record.phoneNumber).Wait();
                                goto LoopEnd;
                            }
                        }
                    }
                }
            }

How can I fix it?

And also why this var string try to be a bool?

const string RINGCENTRAL_PRODUCTION = false;

Code from here https://developers.ringcentral.com/guide/messaging/quick-start#c#

sending sms
1 |3000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

1 Answer

Phong Vu avatar image
Phong Vu answered

Thanks for the report. I will fix and update the quick start it as soon as I can.

Meanwhile, just change the string to bool and rcsdk to restClient

1 |3000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

Developer sandbox tools

Using the RingCentral Phone for Desktop, you can dial or receive test calls, send and receive test SMS or Fax messages in your sandbox environment.

Download RingCentral Phone for Desktop:

Tip: switch to the "sandbox mode" before logging in the app:

  • On MacOS: press "fn + command + f2" keys
  • On Windows: press "Ctrl + F2" keys