Exchanging advertisement to promote apps

Hi, I’ve been trying to implement TAPPX with my admob code but I have no luck. Only admob ads are showing but no TAPPX ads. Has anyone worked with this service before or knows a similiar one?

Hope you can give me some advice.

This is my code: 

local function adListener( event ) -- for k,v in pairs( event ) -- print("adListener ", k, v ) -- so you see everything you get -- end if ( event.isError ) then --Failed to receive an ad end end ads.init("admob", "ca-app-pub-XXXXXXXXXXXXXXX/XXXXXXXXXXXXXXX", adListener ) ads:setCurrentProvider("admob") ads.load("admob", { appId = "ca-app-pub-XXXXXXXXXXXXXXX/XXXXXXXXXXXXXXX", tappxIdAndroid= "/XXXXXXXXX/Pub-XXXX-Android-XXXX", tappxShare = 0.8, testMode = false } ) -- false local function showAd( adPosition, isTestMode ) local xPos, yPos local adPosition = "bottom" -- "top", "bottom" if adPosition == "top" then xPos, yPos = display.screenOriginX, top elseif adPosition == "bottom" then xPos, yPos = display.screenOriginX, bottom end ads:setCurrentProvider("admob") ads.show( "banner", { x = xPos, y = yPos, appId = "ca-app-pub-XXXXXXXXXXXXXXX/XXXXXXXXXXXXXXX", tappxIdAndroid= "/XXXXXXXXX/Pub-XXXXXXXXX-Android-XXXXXXXXX", tappxShare= 0.8, testMode = isTestMode } ) end showAd( "top", false ) -- false -- ADs end

Where did you get these instructions from? Is there a Corona Plugin? I checked their site and their doesn’t appear to be any extension for Corona. There are other similar services but I don’t know of any with a corona extension:

TapForTap (use to have an extension).

GA Orbit (no extension).

As far as I know we don’t support tappx.

TAPPX don’t have an extension for corona. I send them an email asking for instructions when using Corona and they told me the easiest way to integrate Tappx is using the Admob plugin and introducing the Tappx key on it. I code based on what they have for android (tappxIdAndroid, tappxShare). I have send another email for any docs of this integration. I will let you know the answer. Thanks for the replies. 

You can’t just make up parameters to pass to ads.load() and ads.show(). This is something that I have no experience with. If it’s not working for you and Tappx says it works, they will need to support you.

Rob

Where did you get these instructions from? Is there a Corona Plugin? I checked their site and their doesn’t appear to be any extension for Corona. There are other similar services but I don’t know of any with a corona extension:

TapForTap (use to have an extension).

GA Orbit (no extension).

As far as I know we don’t support tappx.

TAPPX don’t have an extension for corona. I send them an email asking for instructions when using Corona and they told me the easiest way to integrate Tappx is using the Admob plugin and introducing the Tappx key on it. I code based on what they have for android (tappxIdAndroid, tappxShare). I have send another email for any docs of this integration. I will let you know the answer. Thanks for the replies. 

You can’t just make up parameters to pass to ads.load() and ads.show(). This is something that I have no experience with. If it’s not working for you and Tappx says it works, they will need to support you.

Rob