如何在ios Objective C中传递PayTm事务的GET请求

问题描述 投票:0回答:1

我正在将PayTm与我的应用程序集成,我想使用GET方法传递参数。

我的代码如下:

NSString *urlString = [NSString stringWithFormat:@"https://secure.paytm.in/oltp/HANDLER_INTERNAL/TXNSTATUS?JsonData={%22MID%22:%22%@%22,%22ORDERID%22:%22a84afd6c-0e54-42df-b29a-2b057f9e7c53%22}",MIDValue];

其中MIDValue是一个字符串。

当我使用此代码时,我收到错误消息。

请提出删除错误的建议。

谢谢

ios objective-c get paytm
1个回答
0
投票

也许您的变量MIDValue包含空格和/或&。首先必须将其编码为URL,然后将其作为参数传递。

Visit this for details, I guess this is what you are looking for

NSString *newParam = [MIDValue stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]]

NSString *urlString = [NSString stringWithFormat:@"https://secure.paytm.in/oltp/HANDLER_INTERNAL/TXNSTATUS?JsonData={%22MID%22:%22%@%22,%22ORDERID%22:%22a84afd6c-0e54-42df-b29a-2b057f9e7c53%22}", newParam];
© www.soinside.com 2019 - 2024. All rights reserved.