We use essential cookies for the website to function, as well as analytics cookies for analyzing and creating statistics of the website performance. To agree to the use of analytics cookies, click "Accept All". You can manage your preferences at any time by clicking "Cookie Settings" on the footer. More Information.

Only Essential Cookies
Accept All

Rewarded Ads

Rewarded ads are full-screen video ads that reward users for watching.

1. Adding a Rewarded Ad

Step 1: Creating a Rewarded Ad Object

Create a RewardAd object. The sample code is as follows:

  1. public class RewardedVideoActivity extends Activity {
  2.    // Test ad slot ID
  3.    private static final String AD_ID = "testx9dtjwj8hp";
  4.    private RewardAd rewardAd;
  5.    @Override
  6.    protected void onCreate(Bundle savedInstanceState) {
  7.        super.onCreate(savedInstanceState);
  8.        setContentView(R.layout.activity_rewarded);
  9.        // Create a reward ad object.
  10.        createRewardAd();
  11.    }
  12.    private void createRewardAd() {
  13.        rewardAd = new RewardAd(this, AD_ID);
  14.    }
  15. }

Step 2: Loading an Ad

Call the loadAd() method of the RewardAd object to load an ad. The sample code is as follows:

  1. /**
  2.  * Load a rewarded ad.
  3.  */
  4. private void loadRewardAd() {
  5.     if (rewardAd == null) {
  6.         rewardAd = new RewardAd(this, AD_ID);
  7.     }
  8.     RewardAdLoadListener listener= new RewardAdLoadListener() {
  9.         @Override
  10.         public void onRewardedLoaded() {
  11.             // Rewarded ad loaded successfully.
  12.         }
  13.         @Override
  14.         public void onRewardAdFailedToLoad(int errorCode) {
  15.             // Failed to load the rewarded ad.
  16.         }
  17.     };
  18.     rewardAd.loadAd(new AdParam.Builder().build(), listener);
  19. }

For details about the methods, please refer to RewardAdLoadListener in the API Reference.

Step 3: Displaying an Ad

Call the isLoaded() method to confirm that an ad has finished loading, and call the show() method of the RewardAd object to display the ad.

The sample code is as follows:

  1. /**
  2.  *  Display a rewarded ad.
  3.  */
  4. private void rewardAdShow() {
  5.     if (rewardAd.isLoaded()) {
  6.         rewardAd.show(RewardedVideoActivity.this, new RewardAdStatusListener() {
  7.             @Override
  8.             public void onRewardAdOpened() {
  9.                 // Rewarded ad opened.
  10.             }
  11.             @Override
  12.             public void onRewardAdFailedToShow(int errorCode) {
  13.                 // Failed to display the rewarded ad.
  14.             }
  15.             @Override
  16.             public void onRewardAdClosed() {
  17.                 // Rewarded ad closed.
  18.             }
  19.             @Override
  20.             public void onRewarded(Reward reward){
  21.                 // Reward earned by user.
  22.                 // TODO Reward the user.
  23.             }
  24.         });
  25.     }
  26. }
Note:
If the reward information has been configured for the ad slot, the reward object is passed in the onRewarded method. Call the reward.getAmount() method to obtain the reward amount and the reward.getName() method to obtain the name of the reward. It is recommended that the reward be granted immediately and verification be implemented on the server side to determine whether the reward is valid. If no reward information is configured, grant rewards based on the actual scenario.

2. Testing a Rewarded Ad

When testing rewarded ads, use the dedicated test ad slot ID to obtain test ads. This avoids invalid ad clicks during the test. The test ad slot ID is used only for function commissioning. Before releasing your app, apply for a formal ad slot ID and replace the test ad slot ID with the formal one.

The following table lists the dedicated ad slot ID for rewarded ad testing.

Ad Format

Display Form

Test Ad Slot ID

Rewarded

Video

testx9dtjwj8hp

 

You can download the sample code for rewarded ads and execute the code. The following screen will be displayed.

3. Validating Server-Side Verification CallBacks

Server-side verification callbacks refer to the URL requests, with specified query parameters, that are sent by HUAWEI Ads to notify a media server that a user needs to be rewarded for interacting with a rewarded video ad. These callbacks provide protection against spoofing.

Rewarding a User

1.  You need to balance user experience and reward validation when deciding when to reward a user. There may be delays if you use server-side callbacks. You are advised to reward the user immediately using a client-side callback and validate all rewards when receiving server-side callbacks. This approach ensures the validity of granted rewards while providing a good user experience.

2.  For some apps where reward validity is very important, delays in granting rewards are acceptable. In this case, you can wait for the server-side verification callback before rewarding users.

Validating Server-Side Verification CallBacks

Step 1: Configure reward information for a rewarded ad.

When applying for a rewarded video ad slot on the Publisher Console, enable reward settings, set the reward item, reward amount, and URL for server-side verification. The following figure shows the reward settings.

Step 2: (Optional) Set data and userId.

Set data and userId for a rewarded ad object.

  1. RewardAd rewardAd = new RewardAd(RewardActivity.this, getString(R.string.ad_id_reward));
  2. RewardVerifyConfig config = new RewardVerifyConfig.Builder().setData("CUSTOM_DATA")
  3.  .setUserId("1234567")
  4.  .build();
  5. rewardAd.setRewardVerifyConfig(config);
  6. ...
  7. rewardAd.loadAd(new AdParam.Builder().build(), rewardAdLoadListener);
Note:
If data and userId are not set, reward grant events can still be reported, but the two parameters will not be present in the server-side callback. If you want to set data and userId, set them before showing the ad and ensure that each parameter value after URLEncode does not exceed 1024 characters. Otherwise, the server-side verification will be affected.


Step 3: Obtain the content to be verified.

After a user watches a rewarded ad, the HUAWEI Ads server sends the parameters to be verified as well as keyId and sign to https://www.example.com/feedback (the verification URL configured in Step 1).

Request Body:

  1. {
  2.  "adId" : "testx9dtjwj8hp",
  3.  "data" : "CUSTOM_DATA",
  4.  "keyId" : "12345678",
  5.  "rewardAmount" : "10",
  6.  "rewardName" : "Gold Coin",
  7.  "sign" : "OA33u6mypnhE4hbmF32N/ibYi1uXt72nDDyYMwjDI6JXVVFKePZYo4F7Fuk2MaG......",
  8.  "uniqueId" : "3361626337333932313435313430373438383561376265636130393939313166",
  9.  "userId" : "1234567"
  10. }

The following table describes the parameters.

Parameter

Type

Mandatory

Description

adId

string

Yes

Ad slot ID of the rewarded video.

data

String

No

Custom data string.

keyId

String

Yes

Key used to verify callbacks.

rewardAmount

String

No

Reward amount.

rewardName

String

No

Reward item.

sign

String

Yes

Callback signature.

uniqueId

String

Yes

Unique hexadecimal identifier generated for each reward grant event.

userId

String

No

User ID.

Step 4: Encapsulate the content to be verified.

The format of content to be verified (excluding sign and keyId) is as follows:

adId={adId}&data={data}&rewardAmount={rewardAmount}&rewardName={rewardName}&uniqueId={uniqueId}&userId={userId}

In the format, {} enclose parameter values and the parameter sequence cannot be changed. If a parameter is null or left empty, do not add it to the URL. Then, use SHA-256 to calculate a hash value for paramContentData.

The sample code is as follows:

  1. String adId = request.getParameter("adId");
  2. String data = request.getParameter("data");
  3. ...
  4. String userId = request.getParameter("userId");
  5. String param = "adId=" + adId + "&data=" + data + "&rewardAmount=" + rewardAmount + "&rewardName=" + rewardName + "&uniqueId=" + uniqueId + "&userId=" + userId;
  6. String sha256Value = Sha256Util.digest(param);
  7. byte[] paramContentData = sha256Value.getBytes(Charset.forName("UTF-8"));

Step 5: Obtain the public key list.

Obtain the public key list provided by Huawei using the following URL:

https://ppscrowd-dre.op.dbankcloud.com/action-lib-track/publickeys

Response body:

  1. {  
  2.  "keys": [    
  3.    {    
  4.      "keyId":"12345678",    
  5.      "publicKey":"LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS1cbk1GLi4uc3c9PVxkQgUFVCTElt"    
  6.    },  
  7.    {    
  8.      "keyId":"22345678",                
  9.      "publicKey":"LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS1cbk1GLi4uc3c9PVxkQgUFVCTElt"    
  10.    }  
  11.  ]
  12. }

Response structure:

Parameter

Type

Mandatory

Description

Keys

List<key>

Yes

Public key list.

Key structure:

Parameter

Type

Mandatory

Description

keyId

String

Yes

Secret key ID.

publicKey

String

Yes

Public key.

The sample code is as follows:

  1. String data = "";
  2. String url = "https://ppscrowd-dre.op.dbankcloud.com/action-lib-track/publickeys";
  3. HttpClient httpclient = new DefaultHttpClient();
  4. HttpGet request = new HttpGet();
  5. try {
  6.    request.setURI(new URI(url));
  7.    HttpResponse response = httpclient.execute(request);
  8.    data = EntityUtils.toString(response.getEntity());
  9. } catch (Exception e) {
  10.    logger.error(e.getMessage());
  11. }

Step 6: Perform verification.

1. Use keyId to find the Base64-encoded public key from the public key list.

2. Use paramContentData, publicKey, and sign as the input parameters of the SHA256withRSA digital signature algorithm to perform verification.

The sample code is as follows:

  1. public static boolean verify(byte[] data, String publicKey, String sign, String signatureAlgorithm) {
  2.    try {
  3.        byte[] keyBytes = base64Decode(publicKey);
  4.        X509EncodedKeySpec keySpec = new X509EncodedKeySpec(keyBytes);
  5.        KeyFactory keyFactory = KeyFactory.getInstance("RSA");
  6.        PublicKey publicK = keyFactory.generatePublic(keySpec);
  7.        Signature signature = Signature.getInstance(signatureAlgorithm);
  8.        signature.initVerify(publicK);
  9.        signature.update(data);
  10.        return signature.verify(base64Decode(sign));
  11.    } catch (InvalidKeyException | SignatureException | UnsupportedEncodingException | InvalidKeySpecException | NoSuchAlgorithmException e) {
  12.        logger.error("verify error:", e);
  13.        return false;
  14.    }
  15. }
  16. private static byte[] base64Decode(String encoded) throws UnsupportedEncodingException {
  17.    return Base64.decodeBase64(encoded.getBytes("UTF-8"));
  18. }

Search
Enter a keyword.