This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
no Linux abra um terminal ( shell ): | |
google-chrome --disable-web-security --user-data-dir="/tmp/" | |
chromium-browser --disable-web-security --user-data-dir="/tmp/" | |
no Windows abra um terminal ( shell ) | |
C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --disable-web-security --user-data-dir="c:/tmp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE PROCEDURE [dbo].[AUTHENTICATE] | |
@USER_NAME NVARCHAR(60), | |
@PASSWORD NVARCHAR(60), | |
@USER_ID INT | |
AS | |
BEGIN | |
DECLARE | |
@URL NVARCHAR(65) = 'https://{api_url}/login', | |
@OBJECT AS INT, | |
@JSON NVARCHAR(150), |