Skip to content

AccuWeather

AccuWeather は、世界中で気象予報サービスを提供するメディア企業です。AccuWeather を使用すると、マーケティングキャンペーンを強化、パーソナライズし、Braze コネクテッドコンテンツ]を使用して翻訳を自動化できます。

前提条件

利用可能なAccuWeather API

以下は、BrazeのキャンペーンやCanvasで参照できるAccuWeather APIである。

コネクテッドコンテンツの例

次に、米国内のユーザーの郵便番号に対応する場所の現在の状況に基づいて、2つの異なるタイプのメッセージを表示するコネクテッドコンテンツ呼び出しの例を示します。AccuWeather の Locations API エンドポイントと Current Conditions API エンドポイントが使用されています。

1
2
3
4
5
6
7
8
9
10
11
{% connected_content http:///dataservice.accuweather.com/locations/v1/postalcodes/{{${country}}}/search?q={{custom_attribute.${Zip Code}}}&apikey={your API key} :save location_info %}

{% connected_content http://dataservice.accuweather.com/currentconditions/v1/{{location_info[0].Key}}?apikey={your API key} :save local_weather %}

{% if {{local_weather[0].WeatherText}} == 'Cloudy' %}
No sunscreen needed :)
{% elsif {{local_weather[0].WeatherText}} == 'Rain' %}
It's raining! Grab an umbrella!
{% else %}
Enjoy the weather!
{% endif %}

雨が降っています」というコネクテッド・コンテンツのプッシュメッセージ!アンドロイド端末で表示される「傘を持とう

2つのコネクテッドコンテンツ呼び出しの詳細を以下の例に示します。

ロケーションAPIの例

1番目の connected_content タグ内で、Locations API に対する GET リクエストが実行されます。この例では、郵便番号のカスタム属性がない場合には、代わりにユーザーの {{${city}}} を利用できます。

1
{% connected_content http://dataservice.accuweather.com/locations/v1/postalcodes/{{${country}}}/search?q={{custom_attribute.${Zip Code}}}&apikey={your API key} :save location_info %}

以下は、AccuWeatherがJSONオブジェクトとして返すものの例である:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[
  {
    "Version": 1,
    "Key": "41333_PC",
    "Type": "PostalCode",
    "Rank": 35,
    "LocalizedName": "Seattle",
    "EnglishName": "Seattle",
    "PrimaryPostalCode": "98102",
    "Region": {
      "ID": "NAM",
      "LocalizedName": "North America",
      "EnglishName": "North America"
    },
    "Country": {
      "ID": "US",
      "LocalizedName": "United States",
      "EnglishName": "United States"
    },
    "AdministrativeArea": {
      "ID": "WA",
      "LocalizedName": "Washington",
      "EnglishName": "Washington",
      "Level": 1,
      "LocalizedType": "State",
      "EnglishType": "State",
      "CountryID": "US"
    },
    "TimeZone": {
      "Code": "PDT",
      "Name": "America/Los_Angeles",
      "GmtOffset": -7.0,
      "IsDaylightSaving": true,
      "NextOffsetChange": "2018-11-04T09:00:00Z"
    },
    "GeoPosition": {
      "Latitude": 47.636,
      "Longitude": -122.327,
      "Elevation": {
        "Metric": {
          "Value": 26.0,
          "Unit": "m",
          "UnitType": 5
        },
        "Imperial": {
          "Value": 85.0,
          "Unit": "ft",
          "UnitType": 0
        }
      }
    },
    "IsAlias": false,
    "ParentCity": {
      "Key": "351409",
      "LocalizedName": "Seattle",
      "EnglishName": "Seattle"
    },
    "SupplementalAdminAreas": [
      {
        "Level": 2,
        "LocalizedName": "King",
        "EnglishName": "King"
      }
    ],
    "DataSets": [
      "Alerts",
      "DailyAirQualityForecast",
      "DailyPollenForecast",
      "ForecastConfidence",
      "MinuteCast"
    ]
  }
]

「Key」ID は有用な変数であり、2番目の GET リクエストで使用されています。 この JSON オブジェクトは、URL の後に :save location_info を指定することで、ローカル変数 location_info に格納できます。

Current Conditions API の例

2番目の connected_content タグで、Current Conditions API に対する GET リクエストが実行されます。リクエスト URLに ロケーションキーを追加する必要があります。connected_content タグの例を次に示します。

1
{% connected_content http://dataservice.accuweather.com/currentconditions/v1/{{location_info[0].Key}}?apikey={your API key} :save local_weather %}

以下は、返されたJSONオブジェクトである:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[
  {
    "LocalObservationDateTime": "2018-04-10T09:35:00-07:00",
    "EpochTime": 1523378100,
    "WeatherText": "Rain",
    "WeatherIcon": 18,
    "IsDayTime": true,
    "Temperature": {
      "Metric": {
        "Value": 11.0,
        "Unit": "C",
        "UnitType": 17
      },
      "Imperial": {
        "Value": 52.0,
        "Unit": "F",
        "UnitType": 18
      }
    },
    "MobileLink": "http://m.accuweather.com/en/us/seattle-wa/98104/current-weather/41333_pc?lang=en-us",
    "Link": "http://www.accuweather.com/en/us/seattle-wa/98104/current-weather/41333_pc?lang=en-us"
  }
]

connected_content タグに見られるように、JSONオブジェクトは、URLの後に:save local_weather を追加することで、ローカル変数local_weather に格納される。

{{local_weather[0].WeatherText}} を参照することで、WeatherTextの出力がどうなるかをテストすることができる。

API 呼び出しが {{local_weather[0].WeatherText}} で応答し、Rain を返す場合、ユーザーはプッシュを受信します。

「このページはどの程度役に立ちましたか?」
New Stuff!