chikeung_ho

Q: I cannot download my App report.

vendor is 85049136

 

I cannot download my app report from Apple.

it said " Network is available but cannot connect to application. Check your proxy and firewall settings and try again."

 

below is the draft of my code:

"

#!/bin/bash

# 3= SKU 7=Product Type 8=Units

############################################################################

 

cd /root/scripts/iOS_Report

 

from='svr07@hket.com'

to='sysadm@careertimes.com.hk andrewsum@hket.com'

#to='freddyfong@hket.com'

vender="85049136"

setdate=$(date --date="- 2 day" +"%Y%m%d")

#setdate="20160623"

file="S_D_${vender}_${setdate}.txt.gz"

txtfile="S_D_${vender}_${setdate}.txt"

resultFile="result.csv"

resultHeader=''

result=''

 

# Retrieve the report from iOS 2 days ago

java -jar Reporter.jar p=Reporter.properties m=Robot.XML Sales.getReport $vender, Sales, Summary, Daily, $setdate

 

function get_unit()

{

        if [ -n "${resultHeader}" ]; then

                resultHeader="${resultHeader},"

        fi

 

        if [ -n "${result}" ]; then

                result="${result},"

        fi

 

        sku=''

        productType=''

 

        if [ "$1" == "1" ]; then

                sku="ETP"

        else

          :

          :

          :

          :

"

 

is the setting changed on server side?

 

Regards

Stephen Ho

ckho@hket.com

app store, iOS 10

Posted on Oct 19, 2016 7:27 PM