php - Fedex Characters limit in Address Streetlines -


i integrating fedex api there 35 characters limitation in address of shipper , recipient. in every case address length more 35 characters.

here sample fedex code shipper in php :

$shipper = array(     'contact' => array(         'personname' => 'sender name',         'companyname' => 'sender company name',         'phonenumber' => '1234567890'     ),     'address' => array(         'streetlines' => '1 sender street',         'city' => 'pune',         'stateorprovincecode' => 'mh',         'postalcode' => '411011',         'countrycode' => 'in',         'countryname' => 'india'     ) ); 

for streetlines, there limit of 35 characters. fedex not considering character after 35 characters. please let me know how can fix issue.

i got solution this. pass 'streetlines' this:

'streetlines' => array('1 sender street', 'temp road') 

each value contain <=35 characters. can push more values also.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -