error:
collection element of type nsuinteger aka unsigned long is not an objective c object
I am trying to make an http request to stripe. This is what the params look like
@"card": card.number, @"exp_month": card.expMonth, @"exp_year": card.expYear, @"cvc": card.cvc
The card.expMonth is whats causing the error. I tried adding (unsigned long) infront, but got the error
collection element of type 'unsigned long' is not an objective c object
What can I do to send the month element?