ads

IFrame buster files - what's their purpose?

谁说胖子不能爱 提交于 2019-11-30 02:10:04
Looking at a few advertising companies (DoubleClick, Atlas), I've come across the concept of iframe buster files, that are hosted on the same host as the ad publisher (one example: http://www.adopstools.com/ibusters/atlas/atlas_rm.htm , and there's a lot of JS code that works with that page). I read that they're used to dynamically resize the iframe. Is that all there is to iframe busters? Does hosting them on publisher's host help with JS cross-domain restrictions? Added : I'm referring to the use case described here: http://blog.operative.com/?tag=iframe , and not just changing the iframe

Facebook's ads api exception 294 - Managing advertisements requires the extended permission ads_management, and a participating API key

久未见 提交于 2019-11-30 01:57:04
问题 My campaign is running on FB and I want to extract daily data with the help of Ads API. I'm using facebook ads api and I'm facing this problem every time { "error": { "message": "(#294) Managing advertisements requires the extended permission ads_management, and a participating API key", "type": "OAuthException", "code": 294 } } I have created one app XYZ and using this created I created an ad campaign. With Graph API Explorer I generated Access Token. and I give permissions also. 回答1: You

Is there any way to get a list of users for a custom audience?

风流意气都作罢 提交于 2019-11-29 15:21:59
Getting other details is easy, but there doesn't seem to be any API accessible way to get a list of users (or even approximate users) for the audience. You can add them, and delete them (?!) but not enumerate all the users in the list. Is that truly the case, or am I missing something? According to the documentation here: https://developers.facebook.com/docs/reference/ads-api/custom-audience-targeting/ you should be able to see an approximate count. There is no way to get the users back from the custom audience list by design. For the audiences you never upload raw contact data. You always

how to add mopub ads library integration with android studio

a 夏天 提交于 2019-11-29 11:23:21
I am trying to add the MoPub SDK to my application. I try to import and add the library in Android Studio, but I do not see any ad in my app. I used Eclipse to add the library originally, but I am trying Android Studio because it is the new Google-supported tool now. How do I add MoPub's SDK to my app using Android Studio? Maybe Android studio has updated, I couldn't solve it according to abaar or pyus13's answer. This answer is based on Android Studio 0.6.1. Unzip the mopub-sdk.zip that you downloaded Open project structure(File -> Project Structure) in Android Studio Click the '+' button on

Interstitial Admob doesn't work : AFMA_ReceiveMessage is not defined

牧云@^-^@ 提交于 2019-11-29 08:51:36
I have two kind of ads : banner and interstitial. The first one works very well, but when I want to display an interstitial ad when I pressed the back button (but we don't care of the button), before closing my app. But my interstitial ad doesn't work and my app is closing with this error in log : E/Ads(20984): JS: Uncaught ReferenceError: AFMA_ReceiveMessage is not defined (:1) I don't know what this error means. I browsed internet, and it may comes from my internet connection. My Wifi ? Or it might comes from Admob aswell ? Should I try in an other area with a better connexion ? Thanks for

Jquery和纯JS实现轮播图(二)--淡入淡出切换式

早过忘川 提交于 2019-11-29 03:28:39
之前有写过一篇轮播图,是左右切换式的,可以参考 Jquery和纯JS实现轮播图(一)–左右切换式 今天分享一下淡入淡出式的轮播图,同样也是用纯js和Jquery两种方法来实现: JQUERY实现 HTML结构: < div id = "ads" > < img src = "./images/img1.jpg" alt = "" class = "show" /> < img src = "./images/img2.jpg" alt = "" /> < img src = "./images/img3.jpg" alt = "" /> < img src = "./images/img4.jpg" alt = "" /> < img src = "./images/img5.jpg" alt = "" /> < img src = "./images/img6.jpg" alt = "" /> < ul > < li class = "active" > </ li > < li > </ li > < li > </ li > < li > </ li > < li > </ li > < li > </ li > </ ul > </ div > CSS代码: ul { list-style : none ; } * { margin : 0 ; padding : 0 ;

Admob real ads not showing after publishing it

↘锁芯ラ 提交于 2019-11-29 02:15:02
After I publish my game in google play and download from play store, I'am waiting for my banner ads to come up and unfortunately it doesn't showing up... but when I include the build.adTest(); when I trying the game/app the ads shows. What do you think is the problem or do admob take some time to show their live/real ads? According to Google "It could be that you have only recently created a new Ad Unit ID and requesting for live ads. It could take a few hours for ads to start getting served if that is that case. If you are receiving test ads then your implementation is fine. Just wait a few

Adsense with AJAX

时光毁灭记忆、已成空白 提交于 2019-11-28 23:32:40
I read this , this and this , but I think my situation is different. I don't need to refresh Ads everytime I make an AJAX call. I have a page call it "mypage.php". I load Adsense advertisement into first div, when page is opened. My second div is empty. After DOM is fully loaded, i make an AJAX post. And put the result into "lower_content" div. Does this break Adsense TOS? <body> <div id="adSense_content> <script> adsense script </script> </div> <div id="lower_content"> empty in start </div> </body> My js file: $(document).ready(function() { $.ajax({ type: "POST", url: "/getit", success:

IFrame buster files - what's their purpose?

我怕爱的太早我们不能终老 提交于 2019-11-28 23:06:47
问题 Looking at a few advertising companies (DoubleClick, Atlas), I've come across the concept of iframe buster files, that are hosted on the same host as the ad publisher (one example: http://www.adopstools.com/ibusters/atlas/atlas_rm.htm, and there's a lot of JS code that works with that page). I read that they're used to dynamically resize the iframe. Is that all there is to iframe busters? Does hosting them on publisher's host help with JS cross-domain restrictions? Added : I'm referring to

Putting an AdMob native ad in a listView

▼魔方 西西 提交于 2019-11-28 20:48:39
I'd like to use the new AdMob native ad functionality in my app. I want to put a native ad within a listView, where every 20th item or so in the list is an ad. Is it possible to achieve this with a Native Express Ad? Or do I have to use a Natve Advanced Ad? Well @Jagjit has shown the right approach. I will write it step by step 1. Create your own custom adapter (by extending BaseAdapter ) which will be shown as listview items 2. Create another layout resource file for showing native ad (design should be similar to the custom adapter created in above step) 3. In the getView method do something