TestSign.m 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //
  2. // TestSign.m
  3. // PLANEA
  4. //
  5. // Created by wangyu on 15/12/21.
  6. // Copyright © 2015年 wangyu. All rights reserved.
  7. //
  8. #import "TestSign.h"
  9. @implementation TestSign
  10. +(void)sendPay_demo {
  11. //创建支付签名对象
  12. payRequsestHandler *req = [payRequsestHandler alloc];
  13. //初始化支付签名对象
  14. [req init:APP_ID mch_id:MCH_ID];
  15. //设置密钥
  16. [req setKey:PARTNER_ID];
  17. //}}}
  18. //获取到实际调起微信支付的参数后,在app端调起支付
  19. NSMutableDictionary *dict = [req sendPay_demo];
  20. if(dict == nil){
  21. //错误提示
  22. NSString *debug = [req getDebugifo];
  23. // [self alert:@"提示信息" msg:debug];
  24. NSLog(@"%@\n\n",debug);
  25. }else{
  26. NSLog(@"%@\n\n",[req getDebugifo]);
  27. //[self alert:@"确认" msg:@"下单成功,点击OK后调起支付!"];
  28. NSMutableString *stamp = [dict objectForKey:@"timestamp"];
  29. //调起微信支付
  30. PayReq* req = [[PayReq alloc] init];
  31. req.openID = [dict objectForKey:@"appid"];
  32. req.partnerId = [dict objectForKey:@"partnerid"];
  33. req.prepayId = [dict objectForKey:@"prepayid"];
  34. req.nonceStr = [dict objectForKey:@"noncestr"];
  35. req.timeStamp = stamp.intValue;
  36. req.package = [dict objectForKey:@"package"];
  37. req.sign = [dict objectForKey:@"sign"];
  38. [WXApi sendReq:req];
  39. }
  40. }
  41. +(BOOL)pay_demo:(NSDictionary*)dict {
  42. NSLog(@"%@",dict);
  43. NSMutableString *stamp = [dict objectForKey:@"timestamp"];
  44. //调起微信支付
  45. PayReq* req = [[PayReq alloc] init];
  46. req.openID = [dict objectForKey:@"appid"];
  47. req.partnerId = [dict objectForKey:@"partnerid"];
  48. req.prepayId = [dict objectForKey:@"prepayid"];
  49. req.nonceStr = [dict objectForKey:@"noncestr"];
  50. req.timeStamp = stamp.intValue;
  51. req.package = [dict objectForKey:@"packageValue"];
  52. req.sign = [dict objectForKey:@"sign"];
  53. return [WXApi sendReq:req];
  54. }
  55. +(BOOL)pay_money:(NSString *)txtTitle money:(NSString *)money orderNo:(NSString *)orderNo notifyURL:(NSString *)notifyURL{
  56. payRequsestHandler *req = [payRequsestHandler alloc];
  57. //初始化支付签名对象
  58. [req init:APP_ID mch_id:MCH_ID];
  59. //设置密钥
  60. [req setKey:PARTNER_ID];
  61. //}}}
  62. //获取到实际调起微信支付的参数后,在app端调起支付
  63. NSMutableDictionary *dict = [req sendPay:txtTitle money:money orderNo:orderNo notifyURL:notifyURL];
  64. if(dict == nil){
  65. //错误提示
  66. NSString *debug = [req getDebugifo];
  67. // [self alert:@"提示信息" msg:debug];
  68. NSLog(@"%@\n\n",debug);
  69. return false;
  70. }else{
  71. NSLog(@"%@\n\n",[req getDebugifo]);
  72. //[self alert:@"确认" msg:@"下单成功,点击OK后调起支付!"];
  73. NSMutableString *stamp = [dict objectForKey:@"timestamp"];
  74. //调起微信支付
  75. PayReq* req = [[PayReq alloc] init];
  76. req.nonceStr = [dict objectForKey:@"noncestr"];
  77. req.openID = [dict objectForKey:@"appid"];
  78. req.package = [dict objectForKey:@"package"];
  79. req.partnerId = [dict objectForKey:@"partnerid"];
  80. req.prepayId = [dict objectForKey:@"prepayid"];
  81. req.sign = [dict objectForKey:@"sign"];
  82. req.timeStamp = stamp.intValue;
  83. [WXApi sendReq:req];
  84. }
  85. return true;
  86. }
  87. @end