AdMob interstitielle d'erreur “Erreur de Requête: Aucune annonce à afficher”

Je suis le développement d'une application iOS à l'aide de Swift2 et Xcode7. Je suis en train de mettre en œuvre AdMob, mais il n'affiche pas mon annonce interstitielle.

override func viewDidLoad() {
    super.viewDidLoad()

    _interstitial = createAndLoadInterstitial()
}

func createAndLoadInterstitial()->GADInterstitial {
    let interstitial = GADInterstitial(adUnitID: "interstitial_ID")
    let gadRequest:GADRequest = GADRequest()
    gadRequest.testDevices = ["test device id"]
    interstitial.delegate = self
    interstitial?.loadRequest(gadRequest)

    return interstitial!
}

func interstitialDidReceiveAd(ad: GADInterstitial!) {
    _interstitial?.presentFromRootViewController(self)
}

func interstitial(ad: GADInterstitial!, didFailToReceiveAdWithError error: GADRequestError!) {
    print(error.localizedDescription)
}

func interstitialDidDismissScreen(ad: GADInterstitial!) {
    _interstitial = createAndLoadInterstitial()
}

Je reçois cette erreur:

Demande d'Erreur: Aucune annonce à afficher.

AdMob interstitielle d'erreur “Erreur de Requête: Aucune annonce à afficher”

Demande d'Erreur: Pas d'annonces à afficher, sonne comme AdMob a été incapable de remplir votre demande d'annonce. Essayez de nouveau. Êtes-vous à la réception de toutes les autres erreurs/avertissements? La version du SDK AdMob utilisez-vous?
J'ai installé AdMob avec CocoaPods(pod "Google Mobile Ads-SDK", '~> 7.0') . J'ai essayé de nouveau, mais seulement reçu ce message d'erreur.
Cependant GADBannerView est normalement affichée...

OriginalL'auteur Mitsuhiko Shimomura | 2015-09-28