while connecting server via matlab , C? How to resolve? without using passwor
4 次查看(过去 30 天)
显示 更早的评论
when im using system command.
system('\*.exe -s serverhostname:port)
its shows --> The server requests you to open the following URL for authentication: https://
How to resolve in matlab without using username and password. via access_token
7 个评论
回答(1 个)
Dinesh
2024-3-21
Hello,
The first step is to obtain an access token from the service that you are using.
Then, you can include the access token in the "system" command to automate this process of logging in without providing a username and password.
Depending on the CLI application you are using, the command might be different.
The following is an example:
system('YourApplication.exe -s serverhostname:port --access-token YOUR_ACCESS_TOKEN');
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!