... cloud.google.com/auth
Here’s an example of a fully constructed authUrl:
https://accounts.google.com/o/oauth2/v2/auth?client_id=YOUR_CLIENT_ID&redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=code&scope=https://www.googleapis.com/auth/gmail.send&access_type=offline
https://github.com ...
Search found 11 matches: redirect
Searched query: redirect
- Sat Dec 14, 2024 5:00 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: oauth for dummies
- Replies: 10
- Views: 642
- Wed Aug 07, 2024 8:30 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Implementing ItsMe in a FWH-application
- Replies: 2
- Views: 981
Re: Implementing ItsMe in a FWH-application
... FUNCTION InitiateItsMeAuthentication()
LOCAL cApiUrl := "https://api.itsme-id.com/oauth2/v2/auth"
LOCAL cClientId := "YOUR_CLIENT_ID"
LOCAL cRedirectUri := "YOUR_REDIRECT_URI"
LOCAL cState := "RANDOM_STATE_STRING"
LOCAL cScope := "profile openid"
LOCAL cAuthUrl := cApiUrl + ;
"?client_id ...
LOCAL cApiUrl := "https://api.itsme-id.com/oauth2/v2/auth"
LOCAL cClientId := "YOUR_CLIENT_ID"
LOCAL cRedirectUri := "YOUR_REDIRECT_URI"
LOCAL cState := "RANDOM_STATE_STRING"
LOCAL cScope := "profile openid"
LOCAL cAuthUrl := cApiUrl + ;
"?client_id ...
- Fri May 03, 2024 8:41 am
- Forum: latest AI news
- Topic: Llama3-70B as a 7 MB EXE
- Replies: 3
- Views: 2542
Re: Llama3-70B as a 7 MB EXE
The idea is to redirect the input and output of hchat.exe so we can use it from Harbour and FWH
- Fri Mar 15, 2024 9:02 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Fulltext-Search
- Replies: 6
- Views: 1959
Fulltext-Search
... that allows you to search for text patterns within files.
I'm building a batch file with all the parameters and then call it with waitrun(). I redirect the response from findstr to a file and then examine the hits.
Actually, the program only needs the search string and the path for now.
I'm ...
I'm building a batch file with all the parameters and then call it with waitrun(). I redirect the response from findstr to a file and then examine the hits.
Actually, the program only needs the search string and the path for now.
I'm ...
- Fri Mar 08, 2024 10:41 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to include hbCurl?
- Replies: 13
- Views: 4432
Re: How to include hbCurl?
Marc, you can redirect to a file: clogrooms and then read with memoread.
Regards,
Otto
DCOM := 'cmd /c "' +;
cCurlPath + 'curl.exe -u username:password -i -k -F "fileToUpload=@' +;
aSrc + '" -F "uploadDirectory=' + cuploadDirectory + '" ' +;
cEndpointRooms + ' > ' +;
clogrooms + '"'
WAITRUN ...
Regards,
Otto
DCOM := 'cmd /c "' +;
cCurlPath + 'curl.exe -u username:password -i -k -F "fileToUpload=@' +;
aSrc + '" -F "uploadDirectory=' + cuploadDirectory + '" ' +;
cEndpointRooms + ' > ' +;
clogrooms + '"'
WAITRUN ...
- Wed Feb 07, 2024 4:08 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Impresoras en Terminal Server
- Replies: 6
- Views: 1159
- Wed Sep 27, 2023 7:46 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Request : function GetSerialCol()
- Replies: 8
- Views: 1274
Re: Request : function GetSerialCol()
... never saw it before, GREAT :)
---
:nEditTypes := EDIT_GET
have no Effect in Sample (can edit but does not save)
Question : how can i redirect Dblclick to "edit" :?:
have try
:bLDblClick := :EditSource()
but it gave me Error
----
when press Button "add new" it crash
Error ...
---
:nEditTypes := EDIT_GET
have no Effect in Sample (can edit but does not save)
Question : how can i redirect Dblclick to "edit" :?:
have try
:bLDblClick := :EditSource()
but it gave me Error
----
when press Button "add new" it crash
Error ...
- Wed Aug 16, 2023 5:14 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Foro MODHARBOUR - posibles enlaces sospechosos
- Replies: 1
- Views: 304
Foro MODHARBOUR - posibles enlaces sospechosos
... Mensajes: 38
Registered for: 4 days
Bhutan
Mensaje por AlexSpride » Mar Ago 15, 2023 9:34 am
Интересная задумка - http://33sdelki.ru/redirect/?go=http://addssites.com
Arriba
AlexSpride
Mensajes: 38
Registered for: 4 days
Bhutan
Mensaje por AlexSpride » Mar Ago 15, 2023 9:35 am ...
Registered for: 4 days
Bhutan
Mensaje por AlexSpride » Mar Ago 15, 2023 9:34 am
Интересная задумка - http://33sdelki.ru/redirect/?go=http://addssites.com
Arriba
AlexSpride
Mensajes: 38
Registered for: 4 days
Bhutan
Mensaje por AlexSpride » Mar Ago 15, 2023 9:35 am ...
- Thu Jul 20, 2023 4:24 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Strange printers installed
- Replies: 4
- Views: 446
Re: Strange printers installed
Enrico, yes. Every time someone enters with RDP and redirect printers checked, a new "printer redirected" is installed.
I think you can search for "redirected" in the printer name and disregard those.
Best regards,
Otto
I think you can search for "redirected" in the printer name and disregard those.
Best regards,
Otto
- Fri May 05, 2023 4:42 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: simulate unknown Function of UDF in IndexKey()
- Replies: 9
- Views: 767
simulate unknown Function of UDF in IndexKey()
... on-fly" :?:
---
if i have a
FUNCTION Dummy()
RETURN .T.
i can use #xtranslate XYZ -> Dummy so i can call XYZ() without "real" existing Function XYZ()
---
so when i can get Function Name from oError the Idea is to "redirect" to existing Function Dummy()
is there a Way to use this Idea :idea:
---
if i have a
FUNCTION Dummy()
RETURN .T.
i can use #xtranslate XYZ -> Dummy so i can call XYZ() without "real" existing Function XYZ()
---
so when i can get Function Name from oError the Idea is to "redirect" to existing Function Dummy()
is there a Way to use this Idea :idea:
- Sat Mar 18, 2023 11:14 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MSXML2.ServerXMLHTTP / readyState / Status
- Replies: 8
- Views: 849
Re: MSXML2.ServerXMLHTTP / readyState / Status
... Reset Content
206 Partial Content
300 Multiple Choices
301 Moved Permanently
302 Found
303 See Other
304 Not Modified
305 Use Proxy
307 Temporary Redirect
400 Bad Request
401 Unauthorized
402 Payment Required
403 Forbidden
404 Not Found
405 Method Not Allowed
406 Not Acceptable
407 Proxy ...
206 Partial Content
300 Multiple Choices
301 Moved Permanently
302 Found
303 See Other
304 Not Modified
305 Use Proxy
307 Temporary Redirect
400 Bad Request
401 Unauthorized
402 Payment Required
403 Forbidden
404 Not Found
405 Method Not Allowed
406 Not Acceptable
407 Proxy ...