Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2022-10-17 19:04:14 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9860335a417a0c71a6f4a1227662af1b18469871
9860335a
1 parent
cf8453d7
fix getCosmoteUserRequest
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.m
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.m
View file @
9860335
...
...
@@ -4893,7 +4893,7 @@ CGFloat DistanceBetweenTwoPoints(CGPoint point1,CGPoint point2)
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failureBlock
{
//Create REQUEST
NSMutableString
*
urlString
=
[
NSMutableString
stringWithFormat
:
@"%@/partners/oauth/
f83dfde1145e4c2da69793abb2f579af/token"
,
_baseURL
];
// /partners/cosmote/verify
NSMutableString
*
urlString
=
[
NSMutableString
stringWithFormat
:
@"%@/partners/oauth/
%@/token"
,
_baseURL
,
_appUUID
];
// /partners/cosmote/verify
WLLOG
(
@"[WARP Trace] HTTP URL: %@"
,
urlString
);
NSMutableURLRequest
*
request
=
[
NSMutableURLRequest
requestWithURL
:[
NSURL
URLWithString
:
urlString
]
cachePolicy
:
NSURLRequestReloadIgnoringLocalCacheData
timeoutInterval
:
100
];
...
...
Please
register
or
login
to post a comment